Clean up of This file to conform to GNU STD:
Showing
1 changed file
with
42 additions
and
39 deletions
1 | 1999-10-11 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 1 | 1999-10-23 Alain Magloire |
2 | |||
3 | * ChangeLog: Cleanup according to GNU std, and remove | ||
4 | of email addresses. The emails should be AUTHORS or THANKS | ||
5 | so if they change no need to sed everything. | ||
6 | |||
7 | 1999-10-11 Jeff Bailey | ||
2 | 8 | ||
3 | * libmailbox/Makefile.am: Remove no-install option, add -pedantic | 9 | * libmailbox/Makefile.am: Remove no-install option, add -pedantic |
4 | 10 | ||
5 | 1999-10-12 Sean 'Shaleh' Perry <shaleh@debian.org> | 11 | 1999-10-12 Sean 'Shaleh' Perry |
6 | 12 | ||
7 | * made sure that the imap4 was REALLY broken | 13 | * made sure that the imap4 was REALLY broken |
8 | 14 | ||
9 | 1999-10-11 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 15 | 1999-10-11 Jeff Bailey |
10 | 16 | ||
11 | * imap4d/Makefile.am: New file | 17 | * imap4d/Makefile.am: New file |
12 | 18 | ||
... | @@ -25,11 +31,11 @@ | ... | @@ -25,11 +31,11 @@ |
25 | 31 | ||
26 | * lib/getline.h: New file | 32 | * lib/getline.h: New file |
27 | 33 | ||
28 | 1999-10-11 Sean 'Shaleh' Perry <shaleh@debian.org> | 34 | 1999-10-11 Sean 'Shaleh' Perry |
29 | 35 | ||
30 | * added my imap code -- PLEASE DO NOT TOUCH | 36 | * added my imap code -- PLEASE DO NOT TOUCH |
31 | 37 | ||
32 | 1999-10-10 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 38 | 1999-10-10 Jeff Bailey |
33 | 39 | ||
34 | * THANKS: New file | 40 | * THANKS: New file |
35 | 41 | ||
... | @@ -48,15 +54,15 @@ | ... | @@ -48,15 +54,15 @@ |
48 | 54 | ||
49 | * libsrc/: Rename to lib/ | 55 | * libsrc/: Rename to lib/ |
50 | 56 | ||
51 | 1999-10-09 Sean 'Shaleh' Perry <shaleh@debian.org> | 57 | 1999-10-09 Sean 'Shaleh' Perry |
52 | 58 | ||
53 | * Made changelog.pl output in approved format -- I miss the time stamp | 59 | * Made changelog.pl output in approved format -- I miss the time stamp |
54 | 60 | ||
55 | Sean 'Shaleh' Perry <shaleh@debian.org> Sat, 9 Oct 1999 01:13:56 -0700 | 61 | 1999-10-09 Sean 'Shaleh' Perry |
56 | 62 | ||
57 | * added examples/gnu-pop3d.pam | 63 | * added examples/gnu-pop3d.pam |
58 | 64 | ||
59 | 1999-10-08 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 65 | 1999-10-08 Jeff Bailey |
60 | 66 | ||
61 | * doc/: New directory | 67 | * doc/: New directory |
62 | 68 | ||
... | @@ -68,24 +74,25 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Sat, 9 Oct 1999 01:13:56 -0700 | ... | @@ -68,24 +74,25 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Sat, 9 Oct 1999 01:13:56 -0700 |
68 | 74 | ||
69 | * acconfig.h: New File | 75 | * acconfig.h: New File |
70 | 76 | ||
71 | Sean 'Shaleh' Perry <shaleh@debian.org> Fri, 8 Oct 1999 18:13:45 -0700 | 77 | 1999-10-08 Sean 'Shaleh' Perry |
72 | 78 | ||
73 | * added showmail.c to examples | 79 | * added showmail.c to examples |
74 | * libmailbox: some minor code cleanups | 80 | * libmailbox: some minor code cleanups |
75 | 81 | ||
76 | Sean 'Shaleh' Perry <shaleh@debian.org> Fri, 8 Oct 1999 01:08:42 -0700 | 82 | 1999-10-08 Sean 'Shaleh' Perry |
77 | 83 | ||
78 | * fixed the "if empty mailbox, return not implemented" | 84 | * fixed the "if empty mailbox, return not implemented" |
79 | NB: seems there was a large assumption being made: | 85 | NB: seems there was a large assumption being made: |
80 | if unixmbox_open() failed, it was because it was not mbox | 86 | if unixmbox_open() failed, it was because it was not mbox |
81 | this was wrong for many reasons, so on actual "not mbox", return EBADMSG. | 87 | this was wrong for many reasons, so on actual "not mbox", |
88 | return EBADMSG. | ||
82 | Prolly want to come up with a better error, but this works for now | 89 | Prolly want to come up with a better error, but this works for now |
83 | * more cleaning in the mailbox code | 90 | * more cleaning in the mailbox code |
84 | a) added stat() call -- we can bomb earlier, plus detect if passed object | 91 | a) added stat() call -- we can bomb earlier, plus detect if |
85 | is a directory or file | 92 | passed object is a directory or file |
86 | b) unixmbox_close() free()'s mbox. This will hamper the use when we add | 93 | b) unixmbox_close() free()'s mbox. This will hamper the use |
87 | support for more mailboxes later. Need to find a solution. Perhaps | 94 | when we add support for more mailboxes later. Need to find |
88 | a unixmbox_free() call. | 95 | a solution. Perhaps a unixmbox_free() call. |
89 | There was also a small leak there -- mbox->name was being left. | 96 | There was also a small leak there -- mbox->name was being left. |
90 | c) To aid checking in unixbox_open(), added checks around fgets call. | 97 | c) To aid checking in unixbox_open(), added checks around fgets call. |
91 | Now properly detects EOF, errors, etc. This was a large cause of the | 98 | Now properly detects EOF, errors, etc. This was a large cause of the |
... | @@ -93,12 +100,12 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Fri, 8 Oct 1999 01:08:42 -0700 | ... | @@ -93,12 +100,12 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Fri, 8 Oct 1999 01:08:42 -0700 |
93 | d) all of unixmbox_open()'s function calls should now be checked | 100 | d) all of unixmbox_open()'s function calls should now be checked |
94 | NB: need to do the same for rest of file | 101 | NB: need to do the same for rest of file |
95 | 102 | ||
96 | Sean 'Shaleh' Perry <shaleh@debian.org> Thu, 7 Oct 1999 22:33:24 -0700 | 103 | 1999-10-07 Sean 'Shaleh' Perry |
97 | 104 | ||
98 | * removed spurious code in from.c | 105 | * removed spurious code in from.c |
99 | * added TODO file | 106 | * added TODO file |
100 | 107 | ||
101 | 1999-10-07 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 108 | 1999-10-07 Jeff Bailey |
102 | 109 | ||
103 | * Makefile.am: Compile libsrc/ first. | 110 | * Makefile.am: Compile libsrc/ first. |
104 | 111 | ||
... | @@ -111,11 +118,11 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Thu, 7 Oct 1999 22:33:24 -0700 | ... | @@ -111,11 +118,11 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Thu, 7 Oct 1999 22:33:24 -0700 |
111 | * configure.in: Remove AM_MAINTAINER_MODE. Export crypt detection | 118 | * configure.in: Remove AM_MAINTAINER_MODE. Export crypt detection |
112 | to Makefiles | 119 | to Makefiles |
113 | 120 | ||
114 | Sean 'Shaleh' Perry <shaleh@debian.org> Thu, 7 Oct 1999 18:31:57 -0700 | 121 | 1999-10-07 Sean 'Shaleh' Perry |
115 | 122 | ||
116 | * included my read_a_line() in examples/ | 123 | * included my read_a_line() in examples/ |
117 | 124 | ||
118 | Sean 'Shaleh' Perry <shaleh@debian.org> Wed, 6 Oct 1999 13:55:42 -0700 | 125 | 1999-10-06 Sean 'Shaleh' Perry |
119 | 126 | ||
120 | * Cleanup some compilation issues | 127 | * Cleanup some compilation issues |
121 | * changed "w+" to "w" in called to pop3_mainloop():ofile = fdopen() | 128 | * changed "w+" to "w" in called to pop3_mainloop():ofile = fdopen() |
... | @@ -123,7 +130,7 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Wed, 6 Oct 1999 13:55:42 -0700 | ... | @@ -123,7 +130,7 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Wed, 6 Oct 1999 13:55:42 -0700 |
123 | * catch EINTR in call to accept() (play nice w/ our UNIX friends) | 130 | * catch EINTR in call to accept() (play nice w/ our UNIX friends) |
124 | * set SO_REUSEADDR on daemon's socket | 131 | * set SO_REUSEADDR on daemon's socket |
125 | 132 | ||
126 | Sean 'Shaleh' Perry <shaleh@debian.org> Tue, 5 Oct 1999 23:06:33 -0700 | 133 | 1999-10-05 Sean 'Shaleh' Perry |
127 | 134 | ||
128 | * Added changelog.pl so we can have automated entries | 135 | * Added changelog.pl so we can have automated entries |
129 | set CVS_EMAIL=me@here.com and CVS_FULLNAME="Joe Blow" | 136 | set CVS_EMAIL=me@here.com and CVS_FULLNAME="Joe Blow" |
... | @@ -132,22 +139,22 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Tue, 5 Oct 1999 23:06:33 -0700 | ... | @@ -132,22 +139,22 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Tue, 5 Oct 1999 23:06:33 -0700 |
132 | the format is controlled simply via the format call at the end | 139 | the format is controlled simply via the format call at the end |
133 | and the section of perl code directly above it | 140 | and the section of perl code directly above it |
134 | 141 | ||
135 | Sean 'Shaleh' Perry <shaleh@debian.org> Tue, 5 Oct 1999 17:46:31 -0700 | 142 | 1999-10-05 Sean 'Shaleh' Perry |
136 | 143 | ||
137 | * added pop3d/signal.c -- contains pop3_sigchld() currently | 144 | * added pop3d/signal.c -- contains pop3_sigchld() currently |
138 | 145 | ||
139 | Sean 'Shaleh' Perry <shaleh@debian.org> Mon, 4 Oct 1999 17:57:17 -0700 | 146 | 1999-10-05 Sean 'Shaleh' Perry |
140 | 147 | ||
141 | * initial fork() rewrite, not even compiled it yet | 148 | * initial fork() rewrite, not even compiled it yet |
142 | 149 | ||
143 | Sean 'Shaleh' Perry <shaleh@debian.org> Mon, 4 Oct 1999 14:28:35 -0700 | 150 | 1999-10-04 Sean 'Shaleh' Perry |
144 | 151 | ||
145 | * changed lock(int mode) to lock(mailbox_lock_t mode), this will allow | 152 | * changed lock(int mode) to lock(mailbox_lock_t mode), this will allow |
146 | the type to be chnaged later without affecting code compatibility | 153 | the type to be chnaged later without affecting code compatibility |
147 | * added name to AUTHORS | 154 | * added name to AUTHORS |
148 | * noticed mention of IMAP4 server and went back to coding it (-: | 155 | * noticed mention of IMAP4 server and went back to coding it (-: |
149 | 156 | ||
150 | 1999-10-03 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 157 | 1999-10-03 Jeff Bailey |
151 | 158 | ||
152 | * mail/mail.c: Support --help, --version. | 159 | * mail/mail.c: Support --help, --version. |
153 | 160 | ||
... | @@ -177,16 +184,16 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Mon, 4 Oct 1999 14:28:35 -0700 | ... | @@ -177,16 +184,16 @@ Sean 'Shaleh' Perry <shaleh@debian.org> Mon, 4 Oct 1999 14:28:35 -0700 |
177 | * mail/mail.c: Include config.h if defined, update copyright. | 184 | * mail/mail.c: Include config.h if defined, update copyright. |
178 | 185 | ||
179 | 186 | ||
180 | Fri Oct 1 01:00:00 1999 Sean 'Shaleh' Perry <shaleh@debian.org> | 187 | 1999-10-01 Sean 'Shaleh' Perry |
181 | 188 | ||
182 | * added an examples directory and the first example, from.c | 189 | * added an examples directory and the first example, from.c |
183 | 190 | ||
184 | Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> | 191 | 1999-10-01 Jakob 'sparky' Kaivo |
185 | 192 | ||
186 | * libmailbox/*.[ch]: added cleanup patches from Shaleh while he works | 193 | * libmailbox/*.[ch]: added cleanup patches from Shaleh while he works |
187 | on getting CVS access | 194 | on getting CVS access |
188 | 195 | ||
189 | 1999-09-22 Jakob 'sparky' Kaivo <jkaivo@elijah.nodomainname.net> | 196 | 1999-09-22 Jakob 'sparky' Kaivo |
190 | 197 | ||
191 | * mail/mail.c (main): added 'f' and 'F' to test mbox_header_line | 198 | * mail/mail.c (main): added 'f' and 'F' to test mbox_header_line |
192 | 199 | ||
... | @@ -219,7 +226,7 @@ Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> | ... | @@ -219,7 +226,7 @@ Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> |
219 | 226 | ||
220 | * libmailbox/*.[ch]: added copyright/licensing info | 227 | * libmailbox/*.[ch]: added copyright/licensing info |
221 | 228 | ||
222 | 1999-09-21 Jakob 'sparky' Kaivo <jkaivo@elijah.nodomainname.net> | 229 | 1999-09-21 Jakob 'sparky' Kaivo |
223 | 230 | ||
224 | * pop3d/Makefile.am (pop3d_LDADD): add $(AUTHLIBS) | 231 | * pop3d/Makefile.am (pop3d_LDADD): add $(AUTHLIBS) |
225 | 232 | ||
... | @@ -229,18 +236,19 @@ Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> | ... | @@ -229,18 +236,19 @@ Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> |
229 | * README: actually put something here, noted necessary tools to build | 236 | * README: actually put something here, noted necessary tools to build |
230 | from CVS | 237 | from CVS |
231 | 238 | ||
232 | 1999-09-14 Jakob 'sparky' Kaivo <jkaivo@elijah.nodomainname.net> | 239 | 1999-09-14 Jakob 'sparky' Kaivo |
233 | 240 | ||
234 | * pop3d/pop3d.c (main): moved setgid() call to after option parsing | 241 | * pop3d/pop3d.c (main): moved setgid() call to after option parsing |
235 | (main): make --version report PACKAGE and VERSION | 242 | (main): make --version report PACKAGE and VERSION |
236 | 243 | ||
237 | * libmailbox/mailbox.c (mbox_open): changed paramater type to const | 244 | * libmailbox/mailbox.c (mbox_open): changed paramater type to const |
238 | 245 | ||
239 | * pop3d/Makefile.am (INCLUDES): change relative directories to top_srcdir base | 246 | * pop3d/Makefile.am (INCLUDES): change relative directories to |
247 | top_srcdir base | ||
240 | 248 | ||
241 | * configure.in: Added checks for PAM and crypt | 249 | * configure.in: Added checks for PAM and crypt |
242 | 250 | ||
243 | 1999-09-13 Jakob 'sparky' Kaivo <jkaivo@elijah.nodomainname.net> | 251 | 1999-09-13 Jakob 'sparky' Kaivo |
244 | 252 | ||
245 | * pop3d/retr.c (pop3_retr): fixed calls mbox_header => mbox_get_header | 253 | * pop3d/retr.c (pop3_retr): fixed calls mbox_header => mbox_get_header |
246 | and mbox_body => mbox_get_body | 254 | and mbox_body => mbox_get_body |
... | @@ -265,15 +273,10 @@ Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> | ... | @@ -265,15 +273,10 @@ Fri Oct 1 03:17:28 1999 Jakob 'sparky' Kaivo <jkaivo@gnu.org> |
265 | 273 | ||
266 | * pop3d/*: imported from gnu-pop3d tree | 274 | * pop3d/*: imported from gnu-pop3d tree |
267 | 275 | ||
268 | 1999-09-11 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 276 | 1999-09-11 Jeff Bailey |
269 | 277 | ||
270 | * libmailbox/unixmbox.h: Do not prefix config.h defines with _ | 278 | * libmailbox/unixmbox.h: Do not prefix config.h defines with _ |
271 | 279 | ||
272 | 1999-09-10 Jeff Bailey <jbailey@cr499794-a.crdva1.bc.wave.home.com> | 280 | 1999-09-10 Jeff Bailey |
273 | 281 | ||
274 | * */*: Accomidate directory rearrange | 282 | * */*: Accomidate directory rearrange |
275 | |||
276 | |||
277 | |||
278 | |||
279 | ... | ... |
-
Please register or sign in to post a comment