/[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.8 - (hide annotations) (download)
Fri Dec 11 14:42:46 2020 UTC (3 years, 5 months ago) by jpp
Branch: MAIN
CVS Tags: e-smith-email-5_6_0-8_el7_sme
Changes since 1.7: +16 -9 lines
* Fri Dec 11 2020 Jean-Philipe Pialasse <tests@pialasse.com> 5.6.0-8.sme
- create -update event [SME: 11133]
- move smtp-auth-proxy to systemd [SME: 11102]

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

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