Moved into www.debian.org:webwml/db.debian.org
[mirror/userdir-ldap.git] / web / doc-mail.wml
1 #use wml::db.d.o title="LDAP Gateway"
2
3 <p>
4 The LDAP directory has a PGP secured mail gateway that
5 allows users to safely and conveniently effect changes to their entries. It
6 makes use of PGP signed input messages to positively identify the user and
7 to confirm the validity of the request. Furthermore it implements a replay
8 cache that prevents the gateway from accepting the same message more than
9 once.
10
11 <p>
12 There are three functions logically split into 3 seperate email addresses
13 that are implemented by the gateway: <b>ping</b>, <b>new password</b> and
14 <b>changes</b>. The function to act on is the first argument to the program.
15
16 <p>
17 Error handling is currently done by generating a bounce message and passing
18 descriptive error text to the mailer. This can generate a somewhat hard to 
19 read error message, but it does have all the relevent information.
20
21 <h1>Ping</h1>
22 The ping command simply returns the users public record. It is useful for
23 testing the gateway and for the requester to get a basic dump of their
24 record. In future this address might 'freshen' the record to indicate the
25 user is alive. Any PGP signed message will produce a reply.
26
27 <h1>New Password</h1>
28 If a user looses their password they can request that a new one be generated 
29 for them. This is done by sending the phrase "Please change my Debian 
30 password" to chpasswd@db.debian.org. The phrase is required to prevent the 
31 daemon from triggering on arbitary signed email. The best way to invoke this
32 feature is with 
33 <pre>echo "Please change my Debian password" | gpg --clearsign | mail chpasswd@db.debian.org</pre>
34 After validating the request the daemon will generate a new random password,
35 set it in the directory and respond with an encrpyted message containing the
36 new password. The password can be changed using one of the other interface
37 methods.
38
39 <h1>Changes</h1>
40 An address (changes@db.debian.org) is provided for making almost arbitary 
41 changes to the contents of the record. The daemon parses its input line by 
42 line and acts on each line in a command oriented manner. Anything, except for 
43 passwords, can be changed using this mechanism. Note however that because 
44 this is a mail gateway it does stringent checking on its input. The other 
45 tools allow fields to be set to virtually anything, the gateway requires 
46 specific field formats to be met.
47
48 <ul>
49 <li>A line of the form <tt>'field: value'</tt> will change the contents of 
50 the field to value. Some simple checks are performed on value to make sure 
51 that it is not set to nonsense. The values that can be changed are: 
52 <b>c</b>, <b>l</b>, <b>facsimiletelephonenumber</b>, <b>telephonenumber</b>, 
53 <b>postaladdress</b>, <b>postalcode</b>,
54 <b>loginshell</b>, <b>emailforward</b>, <b>ircnick</b>, <b>onvacation</b>, 
55 and <b>labledurl</b>
56
57 <li>The daemon has a special parser to help changing latitude and longitude
58 values. It accepts several common formats for position information and
59 converts them to one of the standard forms. The permitted types are 
60 <pre>D = Degrees, M = Minutes, S = Seconds, x = n,s,e,w
61 +-DDD.DDDDD, +- DDDMM.MMMM, +-DDDMMSS.SSSS [standard forms]
62 DDxMM.MMMM, DD:MM.MMMM x, DD:MM:SS.SSS X)</pre>
63 and the request format is <tt>'Lat: xxx Long: xxx'</tt> where <tt>xxx</tt> 
64 is one of the permitted types. The resulting response will include how the 
65 input was parsed and the value in decimal degrees.
66
67 <li>
68 Part of the replicated dataset is a virtual .ssh/authorized_keys file for
69 each user. The change address is the simplest way to set the RSA key(s) you
70 intend to use. Simply place a key on a line by itself, the full SSH key
71 format specification is supported, see sshd(8). Probably the most common way
72 to use this function will be 
73 <pre>cat .ssh/identity.pub | gpg --clearsign | mail change@db.debian.org</pre>
74 which will set the authentication key to the identity you are using.
75
76 Multiple keys per user are supported, but they must all be sent at once.
77
78 <li>Debian.net DNS Zone Entry. The only way to get a debian.net address is
79 to use the mail gateway. It
80 will verify the request and prevent name collisions automatically. Requests
81 can take two forms: <tt>'foo in a 1.2.3.4'</tt> or <tt>'foo in cname
82 foo.bar.'</tt> The precise form is critical and must not be deviated from.
83
84 Like the SSH function above, multiple hosts are supported, but they must all
85 be sent at once. The debian.net zone is only reloaded once per day at
86 midnight -0700.
87
88 <li>If the single word <b>show</b> appears on a line then a PGP encrypted version
89 of the entire record will be attached to the resulting email.
90 </ul>
91
92 After processing the requests the daemon will generate a report which contains
93 each input command and the action taken. If there are any parsing errors 
94 processing stops immediately, but valid changes up to that point are
95 processed. 
96
97 <h2>Notes</h2>
98 <p>
99 In this document PGP refers to any message or key that GnuPG is
100 able to generate or parse, specificaly it includes both PGP2.x and OpenPGP
101 (aka GnuPG) keys. 
102 <p>
103 Due to the replay cache the clock on the computer that generates the
104 signatures has to be accurate to at least one day. If it is off by several
105 months or more then the deamon will outright reject all messages.
106 <p>
107 Examples are given using GnuPG, but PGP 2.x can also be used. The correct
108 options to generate a clear signed ascii armored message in 'filter' mode
109 are <tt>pgp -fast</tt> which does the same as <tt>gpg --clearsign</tt>
110 <p>
111 Debian.org machines rely on secured replication to transfer login data out
112 of the database. Replication is performed at 15 min intervals so it can take
113 a short while before any changes made take effect.