/[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.14 - (hide annotations) (download)
Thu Sep 16 18:57:31 2021 UTC (2 years, 8 months ago) by jpp
Branch: MAIN
CVS Tags: e-smith-email-5_6_0-14_el7_sme
Changes since 1.13: +7 -2 lines
* Thu Sep 16 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-14.sme
- fix typo for mailpattern for rar files [SME: 11690]

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

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