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

Annotation 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.20 - (hide annotations) (download)
Mon Aug 1 18:04:52 2022 UTC (22 months, 1 week ago) by jpp
Branch: MAIN
CVS Tags: e-smith-email-5_6_0-19_el7_sme, HEAD
Changes since 1.19: +5 -2 lines
* Mon Aug 01 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-19.sme
- add quote around filename to .fetchids moving script [SME: 12131]

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

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