/[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.15 - (hide annotations) (download)
Mon Nov 15 15:40:52 2021 UTC (2 years, 6 months ago) by jpp
Branch: MAIN
CVS Tags: e-smith-email-5_6_0-15_el7_sme
Changes since 1.14: +12 -7 lines
* Mon Nov 15 2021 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-15.sme
- untainting string correctly [SME: 11716]

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

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