/[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.17 - (hide annotations) (download)
Thu May 19 04:24:53 2022 UTC (2 years ago) by jpp
Branch: MAIN
CVS Tags: e-smith-email-5_6_0-17_el7_sme
Changes since 1.16: +5 -2 lines
* Thu May 19 2022 Jean-Philippe Pialasse <tests@pialasse.com> 5.6.0-17.sme
- fix typo in regex [SME: 11799]

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

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