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

Annotation of /rpms/e-smith-email/sme8/e-smith-email.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.39 - (hide annotations) (download)
Mon Jan 13 15:47:07 2014 UTC (10 years, 4 months ago) by wellsi
Branch: MAIN
CVS Tags: e-smith-email-5_2_0-23_el5_sme
Changes since 1.38: +9 -2 lines
* Mon Jan 13 2014 Ian Wells <esmith@wellsi.com> 5.2.0-23.sme
- Only present one auth method at a time, in order, to NET::SMTP,
  by Charlie Brady [SME: 6993]
  Second hunk in patch converts tabs to spaces, no code change.

* Sat Jun 29 2013 Ian Wells <esmith@wellsi.com> 5.2.0-22.sme
- Fetchmail multidrop mode follows TCPPort setting, by Hans Riethmann [SME: 7045]

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

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