/[smeserver]/rpms/e-smith-email/sme10/e-smith-email.spec
ViewVC logotype

Contents of /rpms/e-smith-email/sme10/e-smith-email.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.19 - (show annotations) (download)
Sat Jul 30 02:28:01 2022 UTC (22 months ago) by jpp
Branch: MAIN
CVS Tags: e-smith-email-5_6_0-18_el7_sme
Changes since 1.18: +10 -6 lines
* Fri Jul 29 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-18.sme
- move fetchids from /run and avoid its loss on reboot [SME: 12131]
  similar changes in contrib smesevrer-fetchmail

1 # $Id: e-smith-email.spec,v 1.18 2022/07/30 02:25:41 jpp Exp $
2
3 Summary: e-smith server and gateway - email module
4 %define name e-smith-email
5 Name: %{name}
6 %define version 5.6.0
7 %define release 18
8 Version: %{version}
9 Release: %{release}%{?dist}
10 License: GPL
11 Group: Networking/Daemons
12 Source: %{name}-%{version}.tar.xz
13 Patch0: e-smith-email-5.6.0-smtpd_to_qpsmtpd.patch
14 Patch1: e-smith-email-5.6.0-qpsmtpd_in_auth_proxy.patch
15 Patch2: e-smith-email-5.6.0-qpsmtpd_in_masq_templates.patch
16 Patch3: e-smith-email-5.6.0-mysqld2mariadb.patch
17 Patch4: e-smith-email-5.6.0-bz3802-create-local-pseudo.patch
18 Patch5: e-smith-email-5.6.0-bz11133-bz11102-systemd-update.patch
19 Patch6: e-smith-email-5.6.0-bz11443-webmailOnlySSL.patch
20 Patch7: e-smith-email-5.6.0-bz11265-rar.patch
21 Patch8: e-smith-email-5.6.0-bz11634-lock.patch
22 Patch9: e-smith-email-5.6.0-bz11690-fixtypo.patch
23 Patch10: e-smith-email-5.6.0-bz11716-untaint.patch
24 Patch11: e-smith-email-5.6.0-bz11799.patch
25 Patch12: e-smith-email-5.6.0-bz12131-fetchids.patch
26
27 BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot
28 Requires: e-smith-base >= 4.15.0-39
29 Requires: e-smith-tinydns >= 1.0.0-5
30 Requires: e-smith-smtpd
31 Requires: e-smith-mta
32 Requires: e-smith-pop3
33 Requires: e-smith-imap
34 Requires: e-smith-lib >= 1.15.1-19
35 Requires: perl(Net::Server::Fork)
36 Requires: perl(Net::SMTP)
37 Requires: perl(Net::SMTP::SSL)
38 Requires: perl(Authen::SASL)
39 Requires: perl(Net::Server) >= 0.85
40 Requires: runit
41 Requires: e-smith-formmagick >= 1.4.0-12
42 Obsoletes: e-smith-smtp-authentication
43 Obsoletes: e-smith-securemail
44 Conflicts: smeserver-fetchmail < 1.6-24
45 BuildRequires: e-smith-devtools >= 1.13.0-03
46 BuildArchitectures: noarch
47 AutoReqProv: no
48
49 %prep
50 %setup
51 %patch0 -p1
52 %patch1 -p1
53 %patch2 -p1
54 %patch3 -p1
55 %patch4 -p1
56 %patch5 -p1
57 rm -rf root/var/service/ root/service
58 %patch6 -p1
59 %patch7 -p1
60 %patch8 -p1
61 %patch9 -p1
62 %patch10 -p1
63 %patch11 -p1
64 mkdir -p root/var/lib/fetchmail
65 %patch12 -p1
66
67 %build
68 perl createlinks
69
70 %postun
71
72 %install
73 rm -rf $RPM_BUILD_ROOT
74 (cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT)
75 rm -f %{name}-%{version}-%{release}-filelist
76 /sbin/e-smith/genfilelist $RPM_BUILD_ROOT \
77 --dir /var/lock/fetchmail 'attr(755,qmailr,qmail)' \
78 --dir '/var/log/smtp-auth-proxy' 'attr(2750,smelog,nofiles)' \
79 --file '/usr/local/sbin/smtp-auth-proxy.pl' 'attr(0755,root,root)' \
80 --dir '/home/e-smith/Maildir/.junkmail' 'attr(0700,admin,admin)' \
81 --dir '/home/e-smith/Maildir/.junkmail/tmp' 'attr(0700,admin,admin)' \
82 --dir '/home/e-smith/Maildir/.junkmail/new' 'attr(0700,admin,admin)' \
83 --dir '/home/e-smith/Maildir/.junkmail/cur' 'attr(0700,admin,admin)' \
84 --dir '/var/lib/fetchmail' 'attr(0750,qmailr,qmail)' \
85 > %{name}-%{version}-%{release}-filelist
86 echo "%doc COPYING" >> %{name}-%{version}-%{release}-filelist
87
88 %clean
89 rm -rf $RPM_BUILD_ROOT
90
91 %files -f %{name}-%{version}-%{release}-filelist
92 %defattr(-,root,root)
93
94 %pre
95 if [ $1 -gt 1 ] ; then
96 if [ -e /var/service/smtp-auth-proxy/run ] ; then
97 /usr/bin/sv d smtp-auth-proxy
98 /usr/bin/sv d smtp-auth-proxy/log
99 fi
100 fi
101
102 %description
103 e-smith server and gateway software - email module.
104
105 %changelog
106 * Fri Jul 29 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-18.sme
107 - move fetchids from /run and avoid its loss on reboot [SME: 12131]
108 similar changes in contrib smesevrer-fetchmail
109
110 * Thu May 19 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-17.sme
111 - fix typo in regex [SME: 11799]
112
113 * Sat Apr 16 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-16.sme
114 - fix missing dot in regex for untainting [SME: 11799]
115 would delete any account named with the string before the dot
116
117 * Mon Nov 15 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-15.sme
118 - untainting string correctly [SME: 11716]
119
120 * Thu Sep 16 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-14.sme
121 - fix typo for mailpattern for rar files [SME: 11690]
122
123 * Fri Sep 10 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-13.sme
124 - fix perms for /var/lock/fetchmail [SME: 11634]
125
126 * Fri Sep 10 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-12.sme
127 - make /var/lock/fetchmail dir permanent [SME: 11634]
128
129 * Tue Mar 30 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-11.sme
130 - add new RAR file signatures to default mailpatterns database [SME: 11265]
131
132 * Thu Mar 11 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-10.sme
133 - webmail is only SSL [SME: 11443]
134
135 * Fri Dec 11 2020 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-9.sme
136 - create -update event [SME: 11133]
137 - move smtp-auth-proxy to systemd [SME: 11102]
138
139 * Sat Jun 27 2020 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-7.sme
140 - allow creation of pseudonyms with setting of local only [SME: 3802]
141
142 * Wed Jun 15 2016 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-6.sme
143 - fix webmail status not displaying correctly in manager [SME: 9594]
144
145 * Tue Jun 7 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-5.sme
146 - More change from smtpd to qpsmtpd in masq templates [SME: 9561]
147
148 * Fri Jun 3 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-4.sme
149 - Replace smtpd with qpsmtpd in smtp-auth-proxy [SME: 9554]
150
151 * Thu May 12 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-3.sme
152 - Rebuild for [SME: 9393]
153
154 * Fri Apr 22 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-2.sme
155 - Merge smtpd entry into qpsmtpd, same for ssmtpd into sqpsmtpd [SME: 9478]
156
157 * Fri Feb 5 2016 Daniel Berteaud <daniel@firewall-services.com> 5.6.0-1.sme
158 - Roll new stream for sme10
159
160 * Fri Feb 6 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 5.4.0-12.sme
161 - remove the patch e-smith-email-5.4.0-UEsDBBQDAAAIA-new-signature.patch
162 - [SME: 8833]
163
164 * Thu Feb 5 2015 stephane de Labrusse <stephdl@de-labrusse.fr> 5.4.0-11.sme
165 - Add new zip file signatures to default mailpatterns database : UEsDBBQDAAAIA
166 - [SME: 8833]
167
168 * Fri Dec 5 2014 stephane de Labrusse <stephdl@de-labrusse.fr> 5.4.0-9.sme
169 - Add new zip file signatures to default mailpatterns database : ZIPVOSX & ZIPV3
170 - [SME: 8718]
171
172 * Mon Feb 10 2014 Charlie Brady <charlie_brady@mitel.com> 5.4.0-8.sme
173 - Handle exceptions during attempted SASL auth. Add more debug tracing.
174 [SME: 8205]
175
176 * Fri Dec 20 2013 Ian Wells <esmith@wellsi.com> 5.4.0-7.sme
177 - Update of allow webmail-only-local-network by Stephane de Labrusse [SME: 7351]
178
179 * Sat Dec 14 2013 Ian Wells <esmith@wellsi.com> 5.4.0-6.sme
180 - Only present one auth method at a time, in order, to NET::SMTP,
181 by Charlie Brady [SME: 8060]
182 Second hunk in patch converts tabs to spaces, no code change.
183
184 * Tue Dec 10 2013 Chris Burnat <devlist@burnat.com> 5.4.0-5.sme
185 - Allow webmail-only-local-network by Stephane de Labrusse [SME: 7351]
186
187 * Fri Jul 5 2013 Ian Wells <esmith@wellsi.com> 5.4.0-4.sme
188 - Fetchmail multidrop mode follows TCPPort setting, by Hans Riethmann [SME: 7749]
189
190 * Sun Jun 23 2013 Daniel Berteaud <daniel@firewall-services.com> 5.4.0-3.sme
191 - Always enable imap, listen on loopback is disabled [SME: 7697]
192
193 * Sat Mar 16 2013 Ian Wells <esmith@wellsi.com> 5.4.0-2.sme
194 - Avoid use of unitialised variables in smtp migrate fragments [SME: 7487]
195
196 * Wed Feb 6 2013 Shad L. Lords <slords@mail.com> 5.4.0-1.sme
197 - Roll new stream for sme9
198
199 * Wed Dec 19 2012 Ian Wells <esmith@wellsi.com> 5.2.0-19.sme
200 - Allow smtp_auth_proxy to use port 587 with STARTTLS, by Charlie Brady [SME: 6922]
201
202 * Mon Jul 02 2012 Ian Wells <esmith@wellsi.com> 5.2.0-18.sme
203 - Allow blacklist of SMTP AUTH methods, replaces previous patch [SME: 7017]
204
205 * Sun Mar 04 2012 Ian Wells <esmith@wellsi.com> 5.2.0-17.sme
206 - MD5 patch to workaround buggy SMTP servers [SME: 6538]
207
208 * Fri Sep 23 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 5.2.0-16.sme
209 - Fix previous commit to show complete text in server-manager [SME: 6320]
210
211 * Fri Sep 23 2011 Jonathan Martens <smeserver-contribs@snetram.nl> 5.2.0-15.sme
212 - Fix SMTP auth wording in server-manager [SME: 6320]
213
214 * Sat Nov 20 2010 Ian Wells <esmith@wellsi.com> 5.2.0-14.sme
215 - SME 8.0 Changelog Cleanup [SME: 6368]
216
217 * Sun Oct 31 2010 Shad L. Lords <slords@mail.com> 5.2.0-13.sme
218 - Fix property merge when local pseudonym is set [SME: 6370]
219
220 * Sun Oct 31 2010 Shad L. Lords <slords@mail.com> 5.2.0-12.sme
221 - Add smtp auth into web interface, not just when enabled [SME: 6318]
222
223 * Mon Oct 4 2010 Shad L. Lords <slords@mail.com> 5.2.0-11.sme
224 - Enable auth for smtp traffic and migrate if necessary [SME: 5575]
225
226 * Sat Sep 25 2010 Shad L. Lords <slords@mail.com> 5.2.0-10.sme
227 Sun Sep 25 2010 --> Sun Sep 19 2010 or Sat Sep 25 2010 or Sun Sep 26 2010 or ....
228 - Change enabled to transparent for mail proxy [SME: 5574]
229
230 * Sat May 08 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 5.2.0-9.sme
231 Tue May 08 2010 --> Tue May 04 2010 or Sat May 08 2010 or Tue May 11 2010 or ....
232 - Fix migrate fragment [SME: 5922]
233
234 * Tue May 4 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 5.2.0-8.sme
235 - Fix errors in previous commit [SME: 5922]
236
237 * Tue May 4 2010 Jonathan Martens <smeserver-contribs@snetram.nl> 5.2.0-7.sme
238 - Set smtp-auth-proxy Debug property to disabled instead of 0 [SME: 5922]
239
240 * Sat Apr 3 2010 Charlie Brady <charlie_brady@mitel.com> 5.2.0-6.sme
241 - Fix HeloHost patch. [SME: 5854]
242
243 * Thu Mar 25 2010 Federico Simoncelli <federico.simoncelli@gmail.com> 5.2.0-5.sme
244 - Block by default the SMTP transparent proxy [SME: 5574]
245
246 * Mon Dec 21 2009 Filippo Carletti <filippo.carletti@gmail.com> 5.2.0-4.sme
247 - Use HeloHost (if present) in smtp-auth-proxy.pl [SME: 5680]
248
249 * Wed Nov 4 2009 Jonathan Martens <smeserver-contribs@snetram.nl> 5.2.0-3.sme
250 - Allow for changing SPAM subject tag through server-manager [SME: 5559]
251
252 * Wed Oct 29 2008 Shad L. Lords <slords@mail.com> 5.2.0-2.sme
253 - Fix 'Allow private' to be correct string [SME: 4731]
254
255 * Tue Oct 7 2008 Shad L. Lords <slords@mail.com> 5.2.0-1.sme
256 - Roll new stream to separate sme7/sme8 trees [SME: 4633]
257
258 * Mon Jul 28 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 4.18.0-5
259 - Fix patch to be in accordance with conventions in e-smith-formagick's general [SME: 4285]
260
261 * Sat Jul 26 2008 Gavin Weight <gweight@gmail.com> 4.18.0-4
262 - Fix pseudonyms modify if using special characters. Thanks -
263 Federico Simoncelli. [SME: 4346]
264
265 * Sun Apr 27 2008 Jonathan Martens <smeserver-contribs@snetram.nl> 4.18.0-3
266 - Add common <base> tags to e-smith-formmagick's general [SME: 4285]
267
268 * Wed Mar 12 2008 Shad L. Lords <slords@mail.com> 4.18.0-2
269 - Cleanup CREATE/ADD tag mixup [SME: 4045]
270
271 * Tue Mar 11 2008 Stephen Noble <support@dungog.net> 4.18.0-1
272 - Roll stable stream for release.
273
274 * Tue Mar 11 2008 Stephen Noble <support@dungog.net> 4.18.0-1
275 - Roll stable stream for release.
276
277 * Wed Feb 13 2008 Stephen Noble <support@dungog.net> 4.17.0-6
278 - Remove <base> tags now in general [SME: 3917]
279
280 * Sun Feb 10 2008 Stephen Noble <support@dungog.net> 4.17.0-5
281 - Remove duplicate <base> entries [SME: 3892]
282
283 * Wed Jan 09 2008 Stephen Noble <support@dungog.net>4.17.0-4
284 - add visible internal toggle to pseudonym panel [SME: 3497]
285
286 * Thu Dec 27 2007 Shad L. Lords <slords@mail.com> 4.17.0-3
287 - Remove leading 0 from release
288
289 * Wed Dec 26 2007 Charlie Brady <charlie_brady@mitel.com> 4.17.0-02
290 - Add support for SMTPS and MSA outbound authenticated SMTP to
291 smarthost. TODO: Add panel support. [SME: 897]
292
293 * Wed Dec 26 2007 Charlie Brady <charlie_brady@mitel.com> 4.17.0-01
294 - Make new development branch.
295
296 * Mon Jun 25 2007 Charlie Brady <charlie_brady@mitel.com> 4.16.0-22
297 - Add diagnostic if .junkmail Maildir is broken. [SME: 2739]
298
299 * Tue Jun 12 2007 Shad L. Lords <slords@mail.com> 4.16.0-21
300 - Add default to SpamReject to get rid of warnings [SME: 2395]
301
302 * Mon Jun 11 2007 Shad L. Lords <slords@mail.com> 4.16.0-20
303 - decode parameters so pseudonymn can be modified/deleted [SME: 1782]
304
305 * Mon Jun 11 2007 Shad L. Lords <slords@mail.com> 4.16.0-19
306 - encode parameters so pseudonymn can be modified/deleted [SME: 1782]
307
308 * Sun Apr 29 2007 Shad L. Lords <slords@mail.com>
309 - Clean up spec so package can be built by koji/plague
310
311 * Fri Jan 26 2007 Shad L. Lords <slords@mail.com> 4.16.0-18
312 - Finish removing admin email forwarding stuff [SME: 827]
313
314 * Wed Jan 24 2007 Federico Simoncelli <federico.simoncelli@gmail.com> 4.16.0-17
315 - Removed braces from the permitted character in pseudonymous [SME: 2270]
316
317 * Mon Jan 22 2007 Shad L. Lords <slords@mail.com> 4.16.0-16
318 - Change fetchmail dest from 127.0.0 2 to 127.0.0.200 [SME: 2223]
319
320 * Sun Jan 14 2007 Shad L. Lords <slords@mail.com> 4.16.0-15
321 - Add admin email forwarding to modify user panel [SME: 827]
322
323 * Sun Jan 14 2007 Shad L. Lords <slords@mail.com> 4.16.0-14
324 - Make fetchmail deliver to 127.0.0.2 to is it treat like external [SME: 2223]
325
326 * Sat Jan 13 2007 Gavin Weight <gweight@gmail.com> 4.16.0-13
327 - Update Return to sender text to be more clearer that we reject. [SME: 2291]
328
329 * Tue Dec 26 2006 Shad L. Lords <slords@mail.com> 4.16.0-12
330 - Make pseudonyms removable and changeable based on db entries [SME: 2143]
331
332 * Tue Dec 12 2006 Federico Simoncelli <federico.simoncelli@gmail.com> 4.16.0-11
333 - Relaxed the email address check [SME: 1663]
334
335 * Thu Dec 07 2006 Shad L. Lords <slords@mail.com>
336 - Update to new release naming. No functional changes.
337 - Make Packager generic
338
339 * Wed Nov 08 2006 Gavin Weight <gweight@gmail.com> 4.16.0-10
340 - Add another EXE pattern TVqgAAEAAAAFAAAA - Thanks Alex Schaft. [SME: 2039]
341
342 * Tue Sep 26 2006 Gavin Weight <gweight@gmail.com> 4.16.0-09
343 - Incorrect quoting in purge-junkmail-folders diagnostic. [SME: 1936]
344
345 * Wed Sep 20 2006 Gavin Weight <gweight@gmail.com> 4.16.0-08
346 Tue Sep 20 2006 --> Tue Sep 19 2006 or Wed Sep 20 2006 or Tue Sep 26 2006 or ....
347 - Updated virus description in panel. [SME: 1729]
348
349 * Wed Jun 21 2006 Gordon Rowell <gordonr@gormand.com.au> 4.16.0-07
350 - Add another EXE pattern TVp1AQEAAAAE - Thanks Hans-Cees Speel [SME: 1623]
351
352 * Fri Jun 16 2006 Gavin Weight <gweight@gmail.com> 4.16.0-06
353 - Removed 35imp migrate fragment. [SME: 563]
354
355 * Mon May 15 2006 Gordon Rowell <gordonr@gormand.com.au> 4.16.0-05
356 - Fix typo in last change [SME: 1447, SME: 103]
357
358 * Tue May 02 2006 Charlie Brady <charlie_brady@mitel.com> 4.16.0-04
359 - In smtp-auth-proxy.pl, don't relay client's HELO/EHLO, as some servers
360 (wrongly) reject more than 1. [SME: 103]
361
362 * Wed Apr 5 2006 Gordon Rowell <gordonr@gormand.com.au> 4.16.0-03
363 - Detect dangling pseudonyms to avoid white screen of death [SME: 1054]
364 - See also [SME: 762] for tools to tell you how to fix them
365
366 * Thu Mar 16 2006 Gordon Rowell <gordonr@gormand.com.au> 4.16.0-02
367 - Remove stray duplicate line in lexicon [SME: 824]
368
369 * Tue Mar 14 2006 Charlie Brady <charlie_brady@mitel.com> 4.16.0-01
370 - Roll stable stream version. [SME: 1016]
371
372 * Mon Mar 13 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-23
373 - Hide access settings if pop3/imap/webmail not installed [SME: 561]
374
375 * Mon Mar 13 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-22
376 - Remove pop3[s] defaults - now in e-smith-pop3 [SME: 561]
377
378 * Mon Mar 13 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-21
379 - Remove imap[s] defaults - now in e-smith-imap [SME: 561]
380
381 * Tue Feb 28 2006 Charlie Brady <charlie_brady@mitel.com> 4.15.4-20
382 - Pre-create admin's junkmail folder. [SME: 886]
383
384 * Mon Feb 27 2006 Gavin Weight <gweight@gmail.com> 4.15.4-19
385 - Add migrate fragment to get and delete "authentication" and
386 move to correct "Authentication". [SME: 894]
387
388 * Wed Feb 22 2006 Charlie Brady <charlieb@e-smith.com> 4.15.4-18
389 - Update forwarding address validation failure text. [SME: 824]
390
391 * Fri Feb 17 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-17
392 - Fix minor breakage in panel with last change [SME: 818]
393
394 * Thu Feb 16 2006 Charlie Brady <charlieb@e-smith.com> 4.15.4-16
395 - Use $admin{ForwardAddress} in place of AdminEmail [SME: 818]
396
397 * Sun Feb 12 2006 Charlie Brady <charlie_brady@mitel.com> 4.15.4-15
398 - Remove some template files duplicated with e-smith-qmail RPM. [SME: 752]
399
400 * Wed Feb 8 2006 Gavin Weight <gweight@gmail.com> 4.15.4-14
401 - Add migrate fragment to delete EXEFILES. [SME: 95]
402
403 * Mon Feb 6 2006 Charlie Brady <charlie_brady@mitel.com> 4.15.4-13
404 - Add cron job to purge junkmail folders - default retention time is
405 90 days. [SME: 666]
406
407 * Sun Feb 05 2006 Gavin Weight <gweight@gmail.com> 4.15.4-12
408 - No new line in imp fragment at end [SME: 563]
409
410 * Sat Feb 04 2006 Gavin Weight <gweight@gmail.com> 4.15.4-11
411 - Add migrate fragment for imp properties [SME: 563]
412
413 * Wed Feb 01 2006 Gavin Weight <gweight@gmail.com> 4.15.4-10
414 - Updated pseudonyms description [SME: 94]
415
416 * Wed Feb 01 2006 Gavin Weight <gweight@gmail.com> 4.15.4-09
417 - Fixed SMTPAUTHPROXY password field as asterixis [SME: 623]
418
419 * Fri Jan 27 2006 Gavin Weight <gweight@gmail.com> 4.15.4-08
420 - Adjusted text to reflect that SSMTP is enabled by default [SME: 419]
421
422 * Wed Jan 25 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-07
423 - Made sectionbar its own item so that it is in the right place
424 when the sections are hidden [SME: 561]
425
426 * Wed Jan 25 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-06
427 - Hide webmail sections if imp isn't installed
428 - Hide Spam filtering sections if spamassassin isn't installed
429 - Hide Virus scan sections if clamav isn't installed [SME: 561]
430
431 * Fri Jan 6 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-05
432 - Don't check whether the user exists when creating user@domain
433 pseudonyms - i.e. allow support@dom.ain even if support itself
434 hasn't been defined. Of course, dom.ain must exist. [SME: 368]
435
436 * Fri Jan 6 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-04
437 - Don't attempt to recreate first.last and first_last pseudonyms
438 in bootstrap-console-save. We create them when we create the user,
439 and if someone deletes them, that's their choice. [SME: 387]
440
441 * Wed Jan 4 2006 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-03
442 - Add 'set hostname=$DomainName' to /etc/Muttrc [SME: 398]
443
444 * Wed Nov 30 2005 Gordon Rowell <gordonr@gormand.com.au> 4.15.4-02
445 - Bump release number only
446
447 * Fri Oct 14 2005 Gordon Rowell <gordonr@e-smith.com>
448 - [4.15.4-01]
449 - Remove L10Ns from base packages [SF: 1309520]
450
451 * Fri Oct 14 2005 Gordon Rowell <gordonr@e-smith.com>
452 - [4.15.3-01]
453 - New dev stream before relocating L10Ns
454
455 * Fri Sep 30 2005 Gordon Rowell <gordonr@e-smith.com>
456 - [4.15.2-41]
457 - Change French translation of "Weekend" to the more
458 universally acceptable "samedi et dimanche" [SF: 1293855]
459
460 * Fri Sep 30 2005 Gordon Rowell <gordonr@e-smith.com>
461 - [4.15.2-40]
462 - Added Italian L10N - Thanks Filippo Carletti [SF: 1309266]
463
464 * Mon Sep 26 2005 Gordon Rowell <gordonr@e-smith.com>
465 - [4.15.2-39]
466 - Cleanups to French L10N - Thanks Didier Rambeau [SF: 1293855]
467
468 * Sun Sep 25 2005 Gordon Rowell <gordonr@e-smith.com>
469 - [4.15.2-38]
470 - Actually add German L10N to correct package [SF: 1293325]
471
472 * Sun Sep 25 2005 Gordon Rowell <gordonr@e-smith.com>
473 - [4.15.2-37]
474 - Added German L10N - Thanks Dietmar Berteld [SF: 1293325]
475
476 * Tue Sep 13 2005 Gordon Rowell <gordonr@gormand.com.au>
477 - [4.15.2-36]
478 - Add configuration options for ISP SMTP AUTH to Email delivery page
479 [SF: 1236748]
480
481 * Wed Sep 7 2005 Charlie Brady <charlieb@e-smith.com>
482 - [4.15.2-35]
483 - Add requires header for Authen::SASL module, needed by SMTP auth
484 proxy. [SF: 1269111]
485
486 * Fri Sep 2 2005 Charlie Brady <charlieb@e-smith.com>
487 - [4.15.2-34]
488 - Lexicon updates. Still need more French and Spanish translation
489 done. [SF: 1280024]
490
491 * Fri Sep 2 2005 Charlie Brady <charlieb@e-smith.com>
492 - [4.15.2-33]
493 - Add UI toggles for private/public IMAP/IMAPS/POP/POPS. Thanks for
494 patch go to Michael Weinberger! [SF: 1280024]
495
496 * Wed Aug 24 2005 Charlie Brady <charlieb@e-smith.com>
497 - [4.15.2-32]
498 - Handle upstream disconnect in smtp-auth-proxy. Use more concise
499 proxy code, courtesy of the Perl Cookbook. [SF: 1269414]
500
501 * Wed Aug 24 2005 Charlie Brady <charlieb@e-smith.com>
502 - [4.15.2-31]
503 - Improve error reporting in smtp-auth-proxy - return 421 status, and
504 log config errors and upstream connect errors to stderr. [SF: 1257015]
505
506 * Tue Aug 23 2005 Charlie Brady <charlieb@e-smith.com>
507 - [4.15.2-30]
508 - Fix typo in fetchmail settings save part of panel code. [SF: 1265400]
509
510 * Wed Aug 10 2005 Charlie Brady <charlieb@e-smith.com>
511 - [4.15.2-29]
512 - Remove stray symlink from last patch.
513
514 * Wed Aug 10 2005 Shad Lords <slords@mail.com>
515 - [4.15.2-28]
516 - Remove last qmail stuff [SF: 1255261]
517 - Break out pop3 into its own package [SF: 1256055]
518 - Rename popd service to pop3 [SF: 1256055]
519 - Include imap database stuff [SF: 1256055]
520
521 * Tue Aug 9 2005 Charlie Brady <charlieb@e-smith.com>
522 - [4.15.2-27]
523 - Remove "Obsoletes: e-smith-qmail", and split out all qmail specific stuff.
524 [SF: 1255261]
525
526 * Tue Aug 2 2005 Shad Lords <slords@email.com>
527 - [4.15.2-26]
528 - Add TCPProxyPort to specify which port to proxy [SF: 1246986]
529
530 * Fri Jul 22 2005 Charlie Brady <charlieb@e-smith.com>
531 - [4.15.2-25]
532 - Complete the update to current db access APIs - a few esmith::db and
533 esmith::config calls were found hiding. [SF: 1216546, 1242331]
534
535 * Mon Jul 18 2005 Charlie Brady <charlieb@e-smith.com>
536 - [4.15.2-24]
537 - Update all db access APIs to current standards. [SF: 1216546]
538
539 * Mon Jul 18 2005 Charlie Brady <charlieb@e-smith.com>
540 - [4.15.2-23]
541 - Fix pop* run scripts to find checkpassword binary via
542 PATH search. [SF: 1239720]
543 - Various further muttrc configuration changes (from Shad) [SF: 1235454]
544 . Fix braces
545 . Configure "folder" to use IMAP as well, so we see all IMAP
546 folders
547 . use URLs instead of PINE style folder names, and use imaps directly
548
549 * Thu Jul 14 2005 Charlie Brady <charlieb@e-smith.com>
550 - [4.15.2-22]
551 - Configure /etc/Muttrc to use IMAP
552 - And expand /etc/Muttrc at same times as /etc/pine.conf
553 Patch contributed by Gordon Rowell. [SF: 1235454]
554
555 * Tue Jul 12 2005 Charlie Brady <charlieb@e-smith.com>
556 - [4.15.2-21]
557 - French L10N Merci - Didier. [ SF:1227389 ]
558 - Add some missing Requires: headers. [SF: 1217914]
559
560 * Tue Jun 14 2005 Charlie Brady <charlieb@e-smith.com>
561 - [4.15.2-20]
562 - Add Obsoletes headers for a number of email addon packages.
563 [SF: 1219069]
564
565 * Thu Jun 9 2005 Charlie Brady <charlieb@e-smith.com>
566 - [4.15.2-19]
567 - Four PIF file patterns (AHhUYXgg,AMlIbDk5Lm,AMkgICAg,AHhIYW5k) and
568 one more EXE file pattern (TVoAACoAG) - Thanks Hans-Cees Speel
569
570 * Fri Jun 3 2005 Charlie Brady <charlieb@e-smith.com>
571 - [4.15.2-18]
572 - Another EXE file pattern TVpLRVJOR - Thanks Ray Mitchell
573 and Gordon Rowell.
574
575 * Tue May 31 2005 Charlie Brady <charlieb@e-smith.com>
576 - [4.15.2-17]
577 - Disable all mailpatterns by default [Gordon SF:1202391]
578 - Change mailpatterns database back to one pattern per entry [Gordon SF:1202391]
579 - Add two new EXE file patterns - Thanks Ray Mitchell
580
581 * Tue May 24 2005 Charlie Brady <charlieb@e-smith.com>
582 - [4.15.2-16]
583 - Make sure that there are empty templates-default files in the
584 peers/{o,local} templates directory. Fix up a couple of problems
585 in the pop3s run script. [SF: 1206471]
586
587 * Wed May 18 2005 Charlie Brady <charlieb@e-smith.com>
588 - [4.15.2-15]
589 - Change db lookup of spamassassin{sortspam} to spamassassin{SortSpam}.
590 Expand all users' .qmail files in email-update action. [SF: 1202402]
591
592 * Fri May 13 2005 Charlie Brady <charlieb@e-smith.com>
593 - [4.15.2-14]
594 - [Patch from Gordon's e-smith-email-4.15.2-13gr02]
595 - Add missing qmail initscript links [SF:1201092]
596 - Modify email-update-user to expand ~/.qmail-junkmail
597 - Add templates for ~/.qmail-junkmail
598 - This should probably be in e-smith-spamassassin, but that
599 would mean another perl invocation for that template
600
601 * Thu May 5 2005 Charlie Brady <charlieb@e-smith.com>
602 - [4.15.2-13]
603 - Big set of patches from Gordon Rowell.
604 - Show public pop/public imap/http webmail/smtp auth if they
605 are already enabled in that way. Otherwise, only show disabled
606 and the pop3s/imaps/https webmail/ssmtp auth version
607 - Change emailsettings.pm to store most properties in the virtual
608 smtpd and ssmtpd records
609 - Change URL in webmail text to https://
610 - Various lexicon changes for consistency across the panel
611 - Use $db->set_prop(thing,prop,value) instead of
612 $db->get(thing)->set_prop(prop,value)
613 - TODO: The fetchmail settings could easily be done in a loop
614 - Don't delete DelegateMailServer when empty, just clear the value
615 - Changed Patterns property to PatternsScan to match VirusScan
616 - Added lots of defaults for smtpd and ssmtpd:
617 smtpd{access}: public
618 smtpd{Authentication}: disabled
619 smtpd{Instances}: 40
620 smtpd{InstancesPerIP}: 5
621 smtpd{PatternsScan}: disabled
622 smtpd{Proxy}: enabled
623 smtpd{status}: enabled
624 smtpd{TCPPort}: 25
625 smtpd{type}: service
626 smtpd{VirusScan}: enabled
627
628 ssmtpd{access}: public
629 ssmtpd{Authentication}: enabled
630 ssmtpd{Instances}: 10
631 ssmtpd{status}: enabled
632 ssmtpd{TCPPort}: 465
633 ssmtpd{type}: service
634 - Fix up masq fragment to look at smtpd{Proxy}
635 - Add migrate frament for smtpfront-qmail properties
636 - Move mailpatterns defaults to this package
637 - Delete duplicate Requires: line
638 - Fix check for smtpd{Authentication} when displaying options
639
640 * Mon May 2 2005 Charlie Brady <charlieb@e-smith.com>
641 - [4.15.2-12]
642 - Add pseudonyms fragment for virtualdomains template (missed in last
643 change).
644
645 * Sun May 1 2005 Charlie Brady <charlieb@e-smith.com>
646 - [4.15.2-11]
647 - [All items in this change contributed by Gordon Rowell.]
648 - Allow separation of mail for bob@domain1 from bob@domain2
649 - To configure, enter pseudonyms of the form pseudo@domain => user
650 with the following restrictions:
651 - pseudo must be a user already configured on the server
652 - domain must be a domain alredy configured on the server
653 - pseudo may not equal user (since that's the default for all domains)
654 - Merged in the web interface from Shad Lords' e-smith-spamassassin
655 onto the E-mail filtering sub-page
656 - TODO: We should probably disallow this if only one domain is hosted
657 on the server.
658
659 * Sun May 1 2005 Charlie Brady <charlieb@e-smith.com>
660 - [4.15.2-10]
661 - [All items in this change contributed by Gordon Rowell.]
662 - Add e-mail filtering page
663 - Prepare for migration to qpsmtpd by using $SMTPD and $SSMTPD
664 throughout the panel code
665 - Changed Requires: from e-smith-mailfront to e-smith-smtpd (which
666 is provided by e-smith-qpsmtpd and could be by e-smith-mailfront).
667 - Add skeleton virus and spam scan toggles. Note that these set
668 options in the $SMTPD services and each virus or spam scanner can
669 use those as defaults and add additional options as required. For
670 example, if $SMTPD{VirusScan} == 'disabled', no virus scanners should
671 configure themselves to look at the mail.
672 - Make patterns status depend on any being selected, which removes a
673 redundant toggle
674
675 * Thu Apr 28 2005 Charlie Brady <charlieb@e-smith.com>
676 - [4.15.2-09]
677 - Drop e-smith-mailfront dependency, to allow switch to qpsmtpd
678 if desired.
679
680 * Tue Apr 26 2005 Charlie Brady <charlieb@e-smith.com>
681 - [4.15.2-08]
682 - Add update of PatternsStatus (patch from Gordon), and fix a few typos.
683
684 * Tue Apr 19 2005 Charlie Brady <charlieb@e-smith.com>
685 - [4.15.2-07]
686 - Add missing /var/service/qmail/down file.
687
688 * Sun Apr 10 2005 Charlie Brady <charlieb@e-smith.com>
689 - [4.15.2-06]
690 - [Patch from Gordon]
691 - Complete L10N of front page of emailsettings
692 - Move many panel option hashes into subroutines for re-use on status page
693 - Move executable content blocking section from subroutine to FM XML
694 - Open AccountsDB read-only since that's all we need
695 - Actually fix the evil and unsafe part of the webmail settings code
696 - Dormant prototype of optional display of multidrop settings regions
697 - Removed percent from (percent)prep in 4.9.0-01 changelog entry
698 to stop mezzanine/rpmbuild failures due to multiple (percent)prep
699 sections (sigh)
700
701 * Thu Mar 31 2005 Charlie Brady <charlieb@e-smith.com>
702 - [4.15.2-05]
703 - Add template expansion of pop service peers files to email-update,
704 as private/public may have changed.
705
706 * Tue Mar 29 2005 Charlie Brady <charlieb@e-smith.com>
707 - [4.15.2-04]
708 - Fix configuration of ACLs and users-assign files during bootstrap-console-save.
709
710 * Sat Mar 26 2005 Charlie Brady <charlieb@e-smith.com>
711 - [4.15.2-03]
712 - Ensure that /var/service/qmail/control/1 is executable.
713
714 * Thu Mar 24 2005 Charlie Brady <charlieb@e-smith.com>
715 - [4.15.2-02]
716 - Integrate Gordon's changes to break form up into subforms.
717 TODO - non-en localisations.
718
719 * Thu Mar 24 2005 Charlie Brady <charlieb@e-smith.com>
720 - [4.15.2-01]
721 - Roll new development stream - 4.15.2
722
723 * Fri Mar 18 2005 Charlie Brady <charlieb@e-smith.com>
724 - [4.15.1-30]
725 - Avoid warning from email panel if patterns are not enabled.
726 - Avoid crash in panel if DelegateMailServer is being set.
727
728 * Fri Mar 18 2005 Charlie Brady <charlieb@e-smith.com>
729 - [4.15.1-29]
730 - Don't expand /var/qmail/users/assign in generic_template_expand,
731 as users/groups may not yet be created. Instead, combine with
732 qmail-newu in qmail service control/1 script.
733
734 * Fri Mar 18 2005 Charlie Brady <charlieb@e-smith.com>
735 - [4.15.1-28]
736 - Add missing templates for popd/pop3s peers files.
737 - Change port specification in popd run file from "pop3" to
738 "pop" - tcpsvd doesn't grok "pop3".
739
740 * Fri Mar 18 2005 Charlie Brady <charlieb@e-smith.com>
741 - [4.15.1-27]
742 - Use tcpsvd instead of tcpserver for popd and pop3d. Use sslio
743 instead of stunnel for pop3d. TODO - configurable concurrency
744 limits.
745
746 * Fri Mar 18 2005 Charlie Brady <charlieb@e-smith.com>
747 - [4.15.1-26]
748 - Remove now obsolete email-assign action.
749 - Add "Requires: runit"
750
751 * Fri Mar 18 2005 Charlie Brady <charlieb@e-smith.com>
752 - [4.15.1-25]
753 - Add missing templates.metadata file for qmail/users/assign.
754
755 * Thu Mar 17 2005 Charlie Brady <charlieb@e-smith.com>
756 - [4.15.1-24]
757 - More fixes of path for qmail service directory.
758
759 * Thu Mar 17 2005 Charlie Brady <charlieb@e-smith.com>
760 - [4.15.1-23]
761 - Fix paths for qmail service directory in filelist.
762
763 * Thu Mar 17 2005 Charlie Brady <charlieb@e-smith.com>
764 - [4.15.1-22]
765 - Move post-upgrade actions to bootstrap-console-save.
766
767 * Wed Mar 16 2005 Charlie Brady <charlieb@e-smith.com>
768 - [4.15.1-21]
769 - Include all content from e-smith-qmail (arguably lots of this
770 content should move to e-smith-qmail, but this is easier).
771 - Obsolete email-assign action.
772
773 * Mon Mar 14 2005 Charlie Brady <charlieb@e-smith.com>
774 - [4.15.1-20]
775 - Fix dangling symlink.
776 - Add missing exports in FormMagick::Panel::emailsettings
777 - Add missing templates for pop3s tcpserver cdb file.
778
779 * Fri Mar 11 2005 Charlie Brady <charlieb@e-smith.com>
780 - [4.15.1-19]
781 - Fix dangling symlinks, and add tcpserver cdb support for
782 popd and pop3s.
783
784 * Fri Mar 11 2005 Charlie Brady <charlieb@e-smith.com>
785 - [4.15.1-18]
786 - Fix warning from EmailUnknownUser migrate fragment.
787
788 * Thu Mar 10 2005 Charlie Brady <charlieb@e-smith.com>
789 - [4.15.1-17]
790 - Fix path to skeletal junkmail Maildir.
791 - Up memory limits for popd and pop3s run files.
792 - Add missing /var/log/pop3s directory.
793
794 * Wed Mar 9 2005 Charlie Brady <charlieb@e-smith.com>
795 - [4.15.1-16]
796 - Fix some missing checkins from previous version.
797
798 * Wed Mar 9 2005 Charlie Brady <charlieb@e-smith.com>
799 - [4.15.1-15]
800 - Fold in most of Shad's panel changes, with support for
801 imaps and pop3s.
802 - Add supervised pop3s service.
803 - Allow pseudonums of pseudonyms.
804 - Obsolete email-update-shared and email-conf actions.
805 - Add junkmail maildir to skeletal user dir
806 - Remove db entry creation code from panel code - now done
807 via default fragments.
808 - Add TCPPort property of popd (and pop3s).
809
810 * Wed Feb 23 2005 Charlie Brady <charlieb@e-smith.com>
811 - [4.15.1-14]
812 - Remove bogus dependency on sortspam.
813
814 * Tue Jan 25 2005 Charlie Brady <charlieb@e-smith.com>
815 - [4.15.1-13]
816 - Remove obsolete email-startup-links action. [MN00065651]
817 - Obsolete email-sighup and smtp-auth-proxy-restart by using generic
818 services-adjust action. Remove unused email-restart action.
819 Update e-smith-lib dependency. [MN00065576]
820
821 * Mon Jan 17 2005 Charlie Brady <charlieb@e-smith.com>
822 - [4.15.1-12]
823 - Remove conf-fetchmail action - done by default fragments. [MN00064329]
824 - Include ~alias/.qmail-default symlink in rpm. [MN00064230]
825 - Use generic_template_expand action where possible, in place
826 of specific actions. Update e-smith-lib dependency. [MN00064130]
827
828 * Mon Jan 3 2005 Charlie Brady <charlieb@e-smith.com>
829 - [4.15.1-11]
830 - Add default "abuse" pseudonym. [MN00062658]
831
832 * Wed Dec 29 2004 Charlie Brady <charlieb@e-smith.com>
833 - [4.15.1-10]
834 - Remove no longer needed conf-migrate-* actions. [charlieb MN00062545]
835 - Fix "Visisble" typo in default "everyone" pseudonym. [charlieb MN00046951]
836 - Don't restart auth proxy in bootstrap-console-save [charlieb MN00062549]
837
838 * Mon Dec 27 2004 Charlie Brady <charlieb@e-smith.com>
839 - [4.15.1-09]
840 - Untaint pseudonym before using in system(). [charlieb MN00050161]
841
842 * Thu Nov 11 2004 Charlie Brady <charlieb@e-smith.com>
843 - [4.15.1-08]
844 - Fix ownership and permissions of ~alias [charlieb MN00057000]
845
846 * Tue Sep 28 2004 Michael Soulier <msoulier@e-smith.com>
847 - [4.15.1-07]
848 - Updated requires with new perl dependencies. [msoulier MN00040240]
849
850 * Mon Jun 21 2004 Michael Soulier <msoulier@e-smith.com>
851 - [4.15.1-06]
852 - Updated requires.
853
854 * Tue May 11 2004 Michael Soulier <msoulier@e-smith.com>
855 - [4.15.1-05]
856 - Added validation to the AdminEmail field. [msoulier MN00023812]
857
858 * Mon May 10 2004 Michael Soulier <msoulier@e-smith.com>
859 - [4.15.1-04]
860 - Made filtering via SA the default preprocessing action for all email.
861 [msoulier MN00027881]
862
863 * Tue May 4 2004 Michael Soulier <msoulier@e-smith.com>
864 - [4.15.1-03]
865 - Added defaults fragments for all smtp-auth-proxy properties.
866 [msoulier 4728]
867
868 * Tue May 4 2004 Michael Soulier <msoulier@e-smith.com>
869 - [4.15.1-02]
870 - Updating dependencies.
871
872 * Tue May 4 2004 Michael Soulier <msoulier@e-smith.com>
873 - [4.15.1-01]
874 - Rolling as-source to collect patches.
875
876 * Tue May 4 2004 Michael Soulier <msoulier@e-smith.com>
877 - [4.15.0-07]
878 - Patches run script to provide FQDN in POP3 login. [msoulier dpar-27887]
879
880 * Wed Feb 18 2004 Michael Soulier <msoulier@e-smith.com>
881 - [4.15.0-06]
882 - Updated template for admin's .qmail file. [msoulier dpar-20868]
883
884 * Tue Feb 17 2004 Michael Soulier <msoulier@e-smith.com>
885 - [4.15.0-05]
886 - Updated template for home directory .qmail files to support change in
887 sortspam to allow .qmail files more control over mail delivery.
888 [msoulier dpar-20868]
889
890 * Thu Feb 12 2004 Mark Knox <markk@e-smith.com>
891 - [4.15.0-04]
892 - Fwd port of 10064: fixed expansion of /etc/fetchmail in email-update event
893 [markk 11026]
894
895 * Mon Feb 9 2004 Michael Soulier <msoulier@e-smith.com>
896 - [4.15.0-03]
897 - Updated the Requires list and fixed a couple of minor problems.
898 [msoulier 4728]
899
900 * Mon Feb 9 2004 Michael Soulier <msoulier@e-smith.com>
901 - [4.15.0-02]
902 - Adding Charlie's smtp-auth-proxy, and putting it under supervision.
903 [msoulier 4728]
904
905 * Mon Jan 26 2004 Michael Soulier <msoulier@e-smith.com>
906 - [4.15.0-01]
907 - rolling to dev - 4.15.0
908
909 * Sun Sep 21 2003 Charlie Brady <charlieb@e-smith.com>
910 - [4.14.0-08]
911 - Remove duplicate primary domain name in multidrop fetchmail template
912 [charlieb 10064]
913
914 * Wed Aug 27 2003 Michael Soulier <msoulier@e-smith.com>
915 - [4.14.0-07]
916 - Added K* init symlinks to runlevels 0, 1 and 6 for popd. [msoulier 9761]
917
918 * Fri Aug 22 2003 Michael Soulier <msoulier@e-smith.com>
919 - [4.14.0-06]
920 - Removed the conditional around the SMTPProxy creation code. [msoulier 9572]
921 - Changed the trigger property for the SMTPProxy to "Proxy", in
922 smtpfront-qmail. [msoulier 9572]
923
924 * Tue Aug 19 2003 Michael Soulier <msoulier@e-smith.com>
925 - [4.14.0-05]
926 - Added an smtp-proxy db record to permit enabling/disabling of the smtp
927 proxy. [msoulier 9572]
928
929 * Wed Jul 16 2003 Charlie Brady <charlieb@e-smith.com>
930 - [4.14.0-04]
931 - Add junkmail maildir to skel home directory. [charlieb 9475]
932
933 * Thu Jul 3 2003 Charlie Brady <charlieb@e-smith.com>
934 - [4.14.0-03]
935 - Use qmail delivery properties to determine local delivery instructions for
936 admin user. [charlieb 9198, 9255]
937
938 * Thu Jun 26 2003 Charlie Brady <charlieb@e-smith.com>
939 - [4.14.0-02]
940 - Ensure that admin has a .qmail file.
941 [charlieb 9198]
942
943 * Thu Jun 26 2003 Charlie Brady <charlieb@e-smith.com>
944 - [4.14.0-01]
945 - Changing version to stable stream number - 4.14.0
946
947 * Tue Jun 24 2003 Gordon Rowell <gordonr@e-smith.com>
948 - [4.13.0-63]
949 - Spanish nav bar [gordonr 9153]
950
951 * Tue Jun 24 2003 Gordon Rowell <gordonr@e-smith.com>
952 - [4.13.0-62]
953 - Added pseudonym for anonymous [gordonr 9127]
954
955 * Thu Jun 19 2003 Charlie Brady <charlieb@e-smith.com>
956 - [4.13.0-61]
957 - Fix bug with format of ETRN fetchmail invocation. [charlieb 9077]
958
959 * Thu Jun 19 2003 Gordon Rowell <gordonr@e-smith.com>
960 - [4.13.0-60]
961 - Add some defaults for fetchmail, including Method|standard
962 [gordonr 8921]
963
964 * Wed Jun 11 2003 Charlie Brady <charlieb@e-smith.com>
965 - [4.13.0-59]
966 - Add log/run script which was missing from last checkin. [charlieb 8903]
967
968 * Wed Jun 11 2003 Charlie Brady <charlieb@e-smith.com>
969 - [4.13.0-58]
970 - Use tcpserver/supervise rather than xinetd to handle POP connections. Need new
971 genfilelist to handle the permissions under /var/service. [charlieb 8903]
972
973 * Wed Jun 4 2003 Charlie Brady <charlieb@e-smith.com>
974 - [4.13.0-57]
975 - Fix devnull pre-defined alias definition. Use defaults mechanism to reserve
976 devnull alias. Use same mechanism for postmaster, mailer-daemon, and everyone
977 pseudonyms. [charlieb 6460]
978
979 * Tue Jun 3 2003 Charlie Brady <charlieb@e-smith.com>
980 - [4.13.0-56]
981 - Change default status for fetchmail to "disabled". [charlieb 8921]
982
983 * Fri May 30 2003 Michael Soulier <msoulier@e-smith.com>
984 - [4.13.0-55]
985 - Removed dangling symlink to email-startup. [msoulier 8808]
986
987 * Tue May 20 2003 Michael Soulier <msoulier@e-smith.com>
988 - [4.13.0-54]
989 - Fixed expectation of email-update-group so that it can handle user-deleted
990 and group-deleted. [msoulier 6414]
991
992 * Tue May 6 2003 Lijie Deng <lijied@e-smith.com>
993 - [4.13.0-53]
994 - Add Spanish lexicon for emailsettings and pseudonyms [lijied 3793]
995
996 * Tue Apr 29 2003 Tony Clayton <apc@e-smith.com>
997 - [4.13.0-52]
998 - Add default db fragments for qmail/popd/fetchmail services [tonyc 8537]
999 - Remove dead email-startup action [tonyc 8537]
1000
1001 * Mon Apr 14 2003 Michael Soulier <msoulier@e-smith.com>
1002 - [4.13.0-51]
1003 - Changed the interface to email-update-group to accept either no second
1004 argument, or a group or user. [msoulier 8103]
1005
1006 * Mon Apr 14 2003 Michael Soulier <msoulier@e-smith.com>
1007 - [4.13.0-50]
1008 - Removed email-update-all-groups and modified email-update-group to handle
1009 its functionality. [msoulier 8103]
1010
1011 * Mon Apr 14 2003 Charlie Brady <charlieb@e-smith.com>
1012 - [4.13.0-49]
1013 - Remove email-relocate-maildirs action - it's moving to e-smith-imap.
1014 [charlieb 8273]
1015
1016 * Fri Apr 11 2003 Lijie Deng <lijied@e-smith.com>
1017 - [4.13.0-48]
1018 - Modified French button name [lijied 7921]
1019
1020 * Fri Apr 11 2003 Lijie Deng <lijied@e-smith.com>
1021 - [4.13.0-47]
1022 - Modified button name [lijied 7921]
1023
1024 * Thu Apr 10 2003 Michael Soulier <msoulier@e-smith.com>
1025 - [4.13.0-46]
1026 - Using the createlinks script for symlink creation for consistency.
1027 [msoulier 6414]
1028
1029 * Thu Apr 10 2003 Michael Soulier <msoulier@e-smith.com>
1030 - [4.13.0-45]
1031 - Fixed lack of & in front of addresses generated by email-update-all-groups.
1032 [msoulier 6414]
1033 - Fixed lack of use of processTemplate in email-update-group. [msoulier 6414]
1034 - Added a symlink to email-update-all-groups in user-delete. [msoulier 6414]
1035
1036 * Wed Apr 9 2003 Charlie Brady <charlieb@e-smith.com>
1037 - [4.13.0-44]
1038 - Add creation of ~admin/.qmail-default symlink. Move email-update-user
1039 action from post-upgrade to bootstrap-console-save, so it is run
1040 at post-install as well. [charlieb 7660]
1041
1042 * Tue Apr 8 2003 Lijie Deng <lijied@e-smith.com>
1043 - [4.13.0-43]
1044 - Modified pseudonym button name [lijied 7921]
1045
1046 * Tue Apr 8 2003 Gordon Rowell <gordonr@e-smith.com>
1047 - [4.13.0-42]
1048 - Fixed fr nav bar [gordonr 7926]
1049
1050 * Mon Apr 7 2003 Charlie Brady <charlieb@e-smith.com>
1051 - [4.13.0-41]
1052 - Change email-update-user action to loop through all users if
1053 username not given. Link into post-upgrade action. Create
1054 .qmail-default symlink if it doesn't already exist.
1055 [charlieb 7609]
1056
1057 * Fri Apr 4 2003 Lijie Deng <lijied@e-smith.com>
1058 - [4.13.0-40]
1059 - Changed $q->table to $q->start_table where necessary [lijied 8034]
1060
1061 * Thu Apr 3 2003 Gordon Rowell <gordonr@e-smith.com>
1062 - [4.13.0-39]
1063 - Missing english L10N in emailsettings [gordonr 1950]
1064
1065 * Wed Apr 2 2003 Charlie Brady <charlieb@e-smith.com>
1066 - [4.13.0-38]
1067 - Removed 'Mitel Networks SME Server' branding on emailsetting
1068 and pseudonyms [lijied 8016]
1069 - Changed Copyright header to License. [charlieb]
1070 - Add local delivery options in .qmail template - use
1071 DeliveryType and DeliveryInstruction properties of qmail.
1072 [charlieb 2600]
1073
1074 * Wed Apr 2 2003 Charlie Brady <charlieb@e-smith.com>
1075 - [4.13.0-37]
1076 - Modify email-relocate-maildirs to ensure that Mail/junkmail
1077 folder exists for all users. [charlieb 2600]
1078
1079 * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
1080 - [4.13.0-36]
1081 - Redirect outbound port 25 through our SMTP server [gordonr 6349]
1082
1083 * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
1084 - [4.13.0-35]
1085 - Changed to ~alias/.qmail-devnull-default [gordonr 6460]
1086
1087 * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
1088 - [4.13.0-34]
1089 - Added ~alias/.qmail-devnull [gordonr 6460]
1090
1091 * Tue Apr 1 2003 Lijie Deng <lijied@e-smith.com>
1092 - [4.13.0-33]
1093 - Modified emailsetting en-us 'standard' trans text [lijied 7949]
1094
1095 * Tue Apr 1 2003 Gordon Rowell <gordonr@e-smith.com>
1096 - [4.13.0-32]
1097 - Fixed fr nav bar entry [gordonr 7926]
1098
1099 * Mon Mar 31 2003 Mike Dickson <miked@e-smith.com>
1100 - [4.13.0-31]
1101 - fixed the "Action" column to be several columns instead of one [miked 7761]
1102
1103 * Mon Mar 31 2003 Gordon Rowell <gordonr@e-smith.com>
1104 - [4.13.0-30]
1105 - Make use of sectionbar hr CSS class [gordonr 7911]
1106
1107 * Mon Mar 31 2003 Gordon Rowell <gordonr@e-smith.com>
1108 - [4.13.0-29]
1109 - And make section bars only 80% of the width to its obvious there's one
1110 Save button for the page [gordonr 7911]
1111
1112 * Fri Mar 28 2003 Gordon Rowell <gordonr@e-smith.com>
1113 - [4.13.0-28]
1114 - Lighten section bars a little [gordonr 7911]
1115
1116 * Fri Mar 28 2003 Gordon Rowell <gordonr@e-smith.com>
1117 - [4.13.0-27]
1118 - Strengthen section headings to show blocks [gordonr 1950]
1119
1120 * Fri Mar 28 2003 Gordon Rowell <gordonr@e-smith.com>
1121 - [4.13.0-26]
1122 - Deleted dangling panel links after panel merge [gordonr 1950]
1123
1124 * Fri Mar 28 2003 Gordon Rowell <gordonr@e-smith.com>
1125 - [4.13.0-25]
1126 - Adding French L10Ns [gordonr 1950]
1127
1128 * Thu Mar 27 2003 Gordon Rowell <gordonr@e-smith.com>
1129 - [4.13.0-24]
1130 - Rearranged panel order slightly to group like items [gordonr 1950]
1131 - Adjusted titles of the two delegate mail server (upstream/downstream)
1132 items [gordonr 1950]
1133 - TODO: Some missing French L10Ns (tagged in lexicon) [gordonr 1950]
1134
1135 * Thu Mar 27 2003 Gordon Rowell <gordonr@e-smith.com>
1136 - [4.13.0-23]
1137 - Deleted emailretrieval/otheremail - now merged into emailsettings
1138 [gordonr 1950]
1139 - Made emailsettings panel loop back to start and display
1140 success/failure message [gordonr 1950]
1141
1142 * Thu Mar 27 2003 Lijie Deng <lijied@e-smith.com>
1143 - [4.13.0-22]
1144 - Modified emailretrieval and emailsettings en-us text [lijied 4937]
1145 - Modified emailretrieval and emailsettings fr-ca text [lijied 4937]
1146 and modified the lexicons to use lang="fr", rename the lexicon
1147 directory to fr [lijied 6787]
1148
1149 * Tue Mar 25 2003 Lijie Deng <lijied@e-smith.com>
1150 - [4.13.0-21]
1151 - Modified emailsettings access text [lijied 4081]
1152
1153 * Tue Mar 25 2003 Lijie Deng <lijied@e-smith.com>
1154 - [4.13.0-20]
1155 - And add panel link [gordonr 1950]
1156 - Change page title to "E-mail settings' and nav bar to 'e-mail'
1157 in English and French [gordonr 1950]
1158 - Modified otheremail POP and IMAP server access text [lijied 4081]
1159
1160 * Mon Mar 24 2003 Gordon Rowell <gordonr@e-smith.com>
1161 - [4.13.0-19]
1162 - Merge emailretrieval/othermail -> emailsettings [gordonr 1950]
1163
1164 * Tue Mar 18 2003 Gordon Rowell <gordonr@e-smith.com>
1165 - [4.13.0-18]
1166 - Added [$ExternalIP] to "locals" [gordonr 6900]
1167
1168 * Tue Mar 18 2003 Gordon Rowell <gordonr@e-smith.com>
1169 - [4.13.0-17]
1170 - Deleted ./etc/{fetchmail, startmail}/template-begin,
1171 and modified %build [lijied 3295]
1172 - Reconfigure/reload /var/qmail/control/locals on ip-change [gordonr 6900]
1173
1174 * Tue Mar 18 2003 Gordon Rowell <gordonr@e-smith.com>
1175 - [4.13.0-16]
1176 - Broken rebuild - missing mkdir in %build
1177
1178 * Fri Mar 7 2003 Lijie Deng <lijied@e-smith.com>
1179 - [4.13.0-15]
1180 - Modified panel order for emailretrieval,otheremail
1181 and pseudonyms
1182 - Modified en-us and fr-ca pseudonyms panel title [lijied 7356]
1183
1184 * Tue Mar 4 2003 Lijie Deng <lijied@e-smith.com>
1185 - [4.13.0-14]
1186 - Split en-us lexicon from emailretrieval panel
1187 split en-us lexicon from otheremail panel
1188 split en-us lexicon from pseudonyms panel [lijied 4030]
1189
1190 * Mon Mar 3 2003 Lijie Deng <lijied@e-smith.com>
1191 - [4.13.0-13]
1192 - RebuildRPM for otheremail and pseudonyms [lijied 5003]
1193
1194 * Mon Mar 3 2003 Lijie Deng <lijied@e-smith.com>
1195 - [4.13.0-12]
1196 - RebuildRPM for emailretrival, commit missed last time [lijied 5003]
1197
1198 * Fri Feb 28 2003 Charlie Brady <charlieb@e-smith.com>
1199 - [4.13.0-11]
1200 - Added French lexicon for emailretrieval, otheremail
1201 and pseudonyms. [lijied 5003]
1202 - Re-do hosts.allow template to use esmith::ConfigDB::hosts_allow_spec.
1203 Add dependency on up-to-date e-smith-lib. [charlieb 5650]
1204 - Remove bogus mailfront dependency.
1205
1206 * Tue Feb 25 2003 Charlie Brady <charlieb@e-smith.com>
1207 - [4.13.0-10]
1208 - Convert virtualdomains template to use esmith::{Hosts,Domains}DB.
1209 [charlieb 2670]
1210 - Remove duplicate DomainName setting from virtualdomains template,
1211 now that the primary domain is added to the domains db. [charlieb 2670]
1212
1213 * Mon Feb 24 2003 Michael Soulier <msoulier@e-smith.com>
1214 - [4.13.0-09]
1215 - Removed use of LocalDomainPrefix. [msoulier 4812]
1216
1217 * Sat Jan 25 2003 Mike Dickson <miked@e-smith.com>
1218 - [4.13.0-08]
1219 - added ACTION to the lexicon [miked 6363]
1220
1221 * Wed Jan 15 2003 Charlie Brady <charlieb@e-smith.com>
1222 - [4.13.0-07]
1223 - Change pattern match for ppp device in /etc/startmail, so that
1224 mail collection is triggered on a PCI ISDN dialup link [charlieb 5399]
1225 - Remove standard template-{begin,end} fragments where possible. The
1226 default ones will be used in their place [charlieb 3295]
1227
1228 * Thu Jan 9 2003 Michael Soulier <msoulier@e-smith.com>
1229 - [4.13.0-06]
1230 - Fixed incorrect page flow behaviour. Panel now returns to start page on
1231 completion, with a status message prefixed. [msoulier 6470]
1232
1233 * Fri Dec 27 2002 Mike Dickson <miked@e-smith.com>
1234 - [4.13.0-05]
1235 - minor UI updates [miked 5494]
1236
1237 * Mon Dec 16 2002 Mike Dickson <miked@e-smith.com>
1238 - [4.13.0-04]
1239 - UI Update, part of the tweaking for the new UI [miked 5494]
1240
1241 * Mon Dec 2 2002 Mike Dickson <miked@e-smith.com>
1242 - [4.13.0-03]
1243 - ui update [miked 5494]
1244
1245 * Thu Nov 21 2002 Mike Dickson <miked@e-smith.com>
1246 - [4.13.0-02]
1247 - update to new UI system [miked 5494]
1248
1249 * Wed Nov 6 2002 Charlie Brady <charlieb@e-smith.com>
1250 - [4.13.0-01]
1251 - Rolling development stream version to 4.13.0
1252
1253 * Tue Oct 15 2002 Charlie Brady <charlieb@e-smith.com>
1254 - [4.12.1-01]
1255 - Roll new version to fix tagging problem
1256
1257 * Tue Oct 15 2002 Gordon Rowell <gordonr@e-smith.com>
1258 - [4.12.0-02]
1259 - If the user had a maildir called Mail/, rename it so it gets
1260 relocated into the new directory Mail/. Attempt to relocate as
1261 many directories as possible - only warn when directories can't
1262 be renamed rather than calling die(). [gordonr 4767]
1263
1264 * Fri Oct 11 2002 Charlie Brady <charlieb@e-smith.com>
1265 - [4.12.0-01]
1266 - Roll to maintained version number to 4.12.0
1267
1268 * Tue Oct 8 2002 Mark Knox <markk@e-smith.com>
1269 - [4.11.8-05]
1270 - Removed stray description tag [markk 5135]
1271
1272 * Tue Sep 24 2002 Charlie Brady <charlieb@e-smith.com>
1273 - [4.11.8-04]
1274 - Re-add "use esmith::util" to email-update-group - it was lost in the
1275 esmith::AccountsDB rewrite. [charlieb 4932]
1276
1277 * Mon Sep 23 2002 Charlie Brady <charlieb@e-smith.com>
1278 - [4.11.8-03]
1279 - Fix creation of list of groups from groupname in last change [charlieb 4932]
1280
1281 * Fri Sep 20 2002 Charlie Brady <charlieb@e-smith.com>
1282 - [4.11.8-02]
1283 - Modify email-update-group to iterate over all groups during post-upgrade
1284 event [charlieb 4932]
1285
1286 * Mon Sep 9 2002 Mark Knox <markk@e-smith.com>
1287 - [4.11.8-01]
1288 - Rolling to new version to fix patching problem
1289
1290 * Mon Sep 9 2002 Mark Knox <markk@e-smith.com>
1291 - [4.11.7-06]
1292 - Display only multidrop retrieval in private s&g mode [markk 4780]
1293
1294 * Mon Sep 9 2002 Charlie Brady <charlieb@e-smith.com>
1295 - [4.11.7-05]
1296 - Use localhost for all fetchmail local delivery [charlieb 4742]
1297
1298 * Thu Sep 5 2002 Mark Knox <markk@e-smith.com>
1299 - [4.11.7-04]
1300 - Remove empty description and lexicon entry [markk 4764]
1301
1302 * Wed Sep 4 2002 Gordon Rowell <gordonr@e-smith.com>
1303 - [4.11.7-03]
1304 - Relocate maildirs for all users and admin to Mail/ subdirectory
1305 in post-upgrade event. Directories which didn't exist in Mail/
1306 preserve their name. Directories which conflict with an existing
1307 directory in Mail/ become {name}.relocated and if that conflicts,
1308 we try {name}.relocated-time(). If that conflicts, we generate a
1309 warning to the log and give up. [gordonr 4767]
1310
1311 * Fri Aug 30 2002 Charlie Brady <charlieb@e-smith.com>
1312 - [4.11.7-02]
1313 - Update default pine configuration to deal with TLS capable imapd,
1314 and to support a few more features. [charlieb 3669]
1315
1316 * Mon Aug 19 2002 Charlie Brady <charlieb@e-smith.com>
1317 - [4.11.7-01]
1318 - Use new adjust-masq action script to adjust packet filter, rather than
1319 restart-masq. [charlieb 4501]
1320
1321 * Fri Jul 26 2002 Charlie Brady <charlieb@e-smith.com>
1322 - [4.11.6-01]
1323 - Return exit status from /etc/startmail if it is called, 0 otherwise.
1324 [charlieb 4487]
1325
1326 * Fri Jul 26 2002 Charlie Brady <charlieb@e-smith.com>
1327 - [4.11.5-01]
1328 - Add missing space after --authentication option. [charlieb 3050]
1329
1330 * Fri Jul 26 2002 Charlie Brady <charlieb@e-smith.com>
1331 - [4.11.4-01]
1332 - Call /etc/startmail from email-ipup, rather than /etc/fetchmail, so that
1333 $SMTP is set. [charlieb 4483]
1334
1335 * Wed Jul 24 2002 Mark Knox <markk@e-smith.com>
1336 - [4.11.3-01]
1337 - Fixed faulty display of multidrop params [markk 4453]
1338 - Added fetch of POP password [markk 4453]
1339
1340 * Wed Jul 24 2002 Gordon Rowell <gordonr@e-smith.com>
1341 - [4.11.2-01]
1342 - Added optional property fetchmail|AuthenticationMethod, defaulting to
1343 "password" so that people with working CRAM-MD5 or similar can still
1344 choose that (or indeed "any" if it works for them) [gordonr 3050]
1345
1346 * Wed Jul 24 2002 Gordon Rowell <gordonr@e-smith.com>
1347 - [4.11.1-01]
1348 - Added --auth password to fetchmail call to force password
1349 authentication [gordonr 3050]
1350
1351 * Wed Jun 5 2002 Charlie Brady <charlieb@e-smith.com>
1352 - [4.11.0-01]
1353 - Changing version to maintained stream number to 4.11.0
1354
1355 * Fri May 31 2002 Charlie Brady <charlieb@e-smith.com>
1356 - [4.10.0-01]
1357 - Changing version to maintained stream number to 4.10.0
1358
1359 * Tue May 28 2002 Charlie Brady <charlieb@e-smith.com>
1360 - [4.9.25-01]
1361 - Fix multi-drop sort. 'on' and 'off' were confused in "select sort
1362 method" in the panel. [charlieb 3682]
1363
1364 * Tue May 28 2002 Charlie Brady <charlieb@e-smith.com>
1365 - [4.9.24-01]
1366 - Fix forward unknonw email to admin, which was broken in the FormMagick
1367 conversion. [charlieb 3683]
1368
1369 * Thu May 23 2002 Gordon Rowell <gordonr@e-smith.com>
1370 - [4.9.23-01]
1371 - RPM rebuild forced by cvsroot2rpm
1372
1373 * Wed May 22 2002 Gordon Rowell <gordonr@e-smith.com>
1374 - [4.9.22-01]
1375 - Set smtp-server=localhost in pine.conf [gordonr 3567]
1376
1377 * Fri May 17 2002 Mark Knox <markk@e-smith.com>
1378 - [4.9.21-01]
1379 - Fixed heading on panel [markk 3516]
1380
1381 * Fri May 17 2002 Mark Knox <markk@e-smith.com>
1382 - [4.9.20-01]
1383 - Bold table headings [markk 3503]
1384
1385 * Thu May 16 2002 Kirrily Robert <skud@e-smith.com>
1386 - [4.9.19-01]
1387 - Added border to pseudonyms table [skud 3491]
1388
1389 * Thu May 16 2002 Charlie Brady <charlieb@e-smith.com>
1390 - [4.9.18-01]
1391 - Remove migration of smtpfwdd properties and init of smtpfront-qmail
1392 service - moved to e-smith-mailfront. [charlieb 3442]
1393 - Fix fetchmail delivery - we need to use smtphost, not smtpaddress.
1394 - Append @$DomainName to "postmaster" for postmaster address -
1395 fetchmail otherwise uses postmaster@a.b.c.d [charlieb 3469]
1396 - Remove commented out SMTP address lookup in /etc/fetchmail script -
1397 it's now passed in from /etc/startmail (and we have CVS for version
1398 control) [ charlieb 3469].
1399
1400 * Fri May 10 2002 Gordon Rowell <gordonr@e-smith.com>
1401 - [4.9.17-01]
1402 - Handle concurrencyremote setting of zero [gordonr 2920]
1403
1404 * Mon May 6 2002 Gordon Rowell <gordonr@e-smith.com>
1405 - [4.9.16-01]
1406 - Localise SAVE button [gordonr 3222]
1407
1408 * Mon May 6 2002 Charlie Brady <charlieb@e-smith.com>
1409 - [4.9.15-01]
1410 - Removed CVS detritus from changelog.
1411 - Changed references to smtpd db entries to smtpfront-qmail. [charlieb 2604]
1412 - Added blank or IP validator. Changed ip_number to new validation in
1413 emailretrieval [markk 3317]
1414
1415 * Fri May 3 2002 Mark Knox <markk@e-smith.com>
1416 - [4.9.14-01]
1417 - Changed lexicon en -> en-us [markk 3320]
1418 - Removed unused "TITLE" on first page [markk 3320]
1419 - Added status message display on first page [markk 3320]
1420 - Cleaned up display in IE [markk 3320]
1421 - Localised "Everyone" [markk 3320]
1422 - Cleaned up die calls in module for better error handling [markk 3320]
1423
1424 * Thu May 2 2002 Charlie Brady <charlieb@e-smith.com>
1425 - [4.9.13-01]
1426 - Enable smtpd service by default. Migrate status and filter properties
1427 from smtpfwdd to smtpd service, if found. [charlieb 2604]
1428
1429 * Wed May 1 2002 Gordon Rowell <gordonr@e-smith.com>
1430 - [4.9.12-01]
1431 - esmith::AccountDB -> esmith::AccountsDB [schwern 3287]
1432
1433 * Tue Apr 30 2002 Gordon Rowell <gordonr@e-smith.com>
1434 - [4.9.11-01]
1435 - Quote fetchmail username and password [gordonr 3296]
1436
1437 * Fri Apr 26 2002 Gordon Rowell <gordonr@e-smith.com>
1438 - [4.9.10-01]
1439 - Removed /var/qmail/control/rcpthosts/template-{begin,end} [gordonr 2604]
1440
1441 * Thu Apr 25 2002 Gordon Rowell <gordonr@e-smith.com>
1442 - [4.9.9-01]
1443 - Added head/foot to pseudonyms [gordonr 3223]
1444 - Nav bar entries to all panels [gordonr 3155]
1445
1446 * Mon Apr 22 2002 Gordon Rowell <gordonr@e-smith.com>
1447 - [4.9.8-01]
1448 - Removed bogus hard quotes on call to serviceControl [gordonr 2920]
1449 - Changed navigation for email retrieval to "E-mail" as per
1450 glossary [gordonr 3155]
1451
1452 * Fri Apr 19 2002 Mark Knox <markk@e-smith.com>
1453 - [4.9.7-01]
1454 - Changed some db->get()s to check their return values. Was causing breakage
1455 in otheremail panel on fresh install. [markk]
1456
1457 * Fri Apr 19 2002 Gordon Rowell <gordonr@e-smith.com>
1458 - [4.9.6-01]
1459 - Allow optional qmail|ConcurrencyRemote setting which overrides the
1460 memory sized based heuristic [gordonr 2920]
1461
1462 * Fri Apr 19 2002 Mark Knox <markk@e-smith.com>
1463 - [4.9.5-01]
1464 - Removed hardcoded server name and replaced with lookup of FQDN [markk 3196]
1465
1466 * Thu Apr 18 2002 Mark Knox <markk@e-smith.com>
1467 - [4.9.4-01]
1468 - Pass SMTP on the command line as the env is cleared [markk 3161]
1469 - Pass LocalIP if ExternalIP doesn't exist [markk 3161]
1470
1471 * Thu Apr 18 2002 Mark Knox <markk@e-smith.com>
1472 - [4.9.3-01]
1473 - Extract ExternalIP in /etc/startmail and export as ENV{SMTP} to
1474 /etc/fetchmail to avoid calling privileged commands as user qmailr
1475 [markk 3161]
1476
1477 * Mon Apr 15 2002 Gordon Rowell <gordonr@e-smith.com>
1478 - [4.9.2-01]
1479 - Language en->en-us
1480
1481 * Mon Apr 8 2002 Michael Schwern <schwern@e-smith.com>
1482 - [4.9.1-01]
1483 - Added i18n'd versions of emailretrieval and otheremail panels [skud 3032]
1484
1485 * Fri Mar 15 2002 Charlie Brady <charlieb@e-smith.com>
1486 - [4.9.0-01]
1487 - rollRPM: Rolled version number to 4.9.0-01. Includes patches up to 4.8.0-07.
1488 - Removed empty directories from tarball and add code to make them in prep
1489 section, prior to CVS import.
1490
1491 * Thu Feb 14 2002 Charlie Brady <charlieb@e-smith.com>
1492 - [4.8.0-07]
1493 - Remove the current qmail rcpthosts template and replace it with a
1494 template directory containing zero length template-begin and template-end
1495 files. The current template containing "not used" comments is moved
1496 into the e-smith-obtuse-smtpd RPM.
1497
1498 * Mon Jan 28 2002 Charlie Brady <charlieb@e-smith.com>
1499 - [4.8.0-06]
1500 - Re-instate 4.8.0-02 patch. See #2677.
1501
1502 * Fri Jan 18 2002 Charlie Brady <charlieb@e-smith.com>
1503 - [4.8.0-05]
1504 - Use external IP as SMTP address when using multidrop mail, so that
1505 external network smtpd rules are applied to address matches. We have to
1506 fall back to LocalIP in serveronly mode, unfortunately, because we have
1507 no other option.
1508
1509 * Fri Dec 21 2001 Charlie Brady <charlieb@e-smith.com>
1510 - [4.8.0-04]
1511 - Temporarily back out 4.8.0-02 patch, pending further verification.
1512
1513 * Fri Dec 21 2001 Charlie Brady <charlieb@e-smith.com>
1514 - [4.8.0-03]
1515 - Fix typo "smptroutes" => "smtproutes" in email-conf.
1516
1517 * Wed Dec 12 2001 Charlie Brady <charlieb@e-smith.com>
1518 - [4.8.0-02]
1519 - Fix a few problems with email-ipup script which lead to warnings being
1520 logged.
1521 - Trucate the changelog, which is getting very large. For earlier changelog,
1522 see an earlier version of the package.
1523
1524 * Tue Dec 11 2001 Adrian Chung <mac@e-smith.com>
1525 - [4.8.0-01]
1526 - rollRPM: Rolled version number to 4.8.0-01. Includes patches up to 4.7.0-12.
1527
1528 * Tue Aug 21 2001 Gordon Rowell <gordonr@e-smith.com>
1529 - [4.6.1-01]
1530 - Rolled version number to 4.6.1-01. Includes patches upto 4.6.0-06.
1531
1532 * Tue Aug 21 2001 Gordon Rowell <gordonr@e-smith.com>
1533 - [4.6.0-02..06]
1534 - Final branding changes
1535
1536 * Wed Aug 8 2001 Charlie Brady <charlieb@e-smith.com>
1537 - [4.6.0-01]
1538 - Rolled version number to 4.6.0-01. Includes patches upto 4.5.0-20.
1539

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed