Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#62868 - Permission denied accepting a GroupWise meeting a second time
(Chen)
#67513 - Evolution corrupts memory if backend autobooks meeting attendees
(JP)
#66230 - tasks from online iCal duplicate after auto-refresh (Rodrigo)
* Address Book
#66368 - VCard parser doesn't add "File under" (Hans)
#66574 - Make e_book_get_self work (Diego Gonzalez
#67600 - fix e-d-s issues on x86_64 machines (Hans)
* All
#65200 - GroupWise backend crash
#67031 - (Partial) show completed status properly for GroupWise tasks
Other bugs
* Address Book
- Restrict system address book queries to groupwise server for performance
reasons (Siva)
* Calendar
- load system tasks backend correctly
Updated Translations:
- fr (Craig Jeffares)
- zh_TW (Craig Jeffares)
- sk (Stanislav Visnovsky)
- fa (Roozbeh Pournader)
- id (Mohammad DAMT)
- ar (Arafat Medini)
Changes since 11.10 include:
* When sending messages that contain ASCII control characters but neither
NULs nor non-ASCII characters, the quoted-printable MIME encoding is now
used instead of 7bit.
* A dangling pointer after a memory reallocation could result in a coredump
when the junk mail database was updated by a 'good' or a 'junk' command.
* The code for accessing the junk mail database has been made more machine-
independent. It will not make a difference on most of the platforms on
which nail runs. If your compiler does insert padding into C structs that
contain only members of type char, you will have to create the junk mail
database from scratch again, though.
Changes:
03-23-04 - Roeland Merks (3.7.1)
o Added code to toggle ASUS Mail LED
12-18-03 - Anton Perich
o Changed IMAP code to use STATUS instead of EXAMINE
11-14-03 - Kurt Granroth
o Updated 'admin' subdir to work with newer autoconf/automake
10-22-03 - Adam Piatyszek
o Bug fix in maildir code to handle 'f'lagged messages
09-26-03 - Clemens Oertel
o New option to set a command that runs whenever the status changes
from New back to Old. Useful to set LEDs and the like
3.0.
Important changes since 2.64 (for details see the file 'Changes')
- support for sender authentication using the Sender Policy Framework
(SPF)
- checking for web links of known spam advertisers (SURBL)
- modular plugin architecture
- improved SQL database support for storing user data in server
installations
- improved email classification
- SpamAssassin is now part of the Apache Foundation
under ${PREFIX} instead of being an absolute path.
So fix the references using RCD_SCRIPTS_EXAMPLEDIR to be
${PREFIX}/${RCD_SCRIPTS_EXAMPLEDIR}.
This should have no changes to use before.
Please note that the MESSAGE files in most cases are wrong in the
first place. We have automated mechanisms and could have an automated
message for explaining rc.d script usage. (This is something to do!)
No need to bump PKGREVISION or something, this was harmless:
some directories were made twice while installing from pkgsrc (by do-install
target and by INSTALL script) and binary packages were safe because the
INSTALL script creates them.
0.9.5
- Fixed problems with the select zeroing out timeouts.
- Added support for setting the PidFile from the config file
0.9
- Don't quit when too many threads created
- Restructured smtp passthru system so it can be used by other apps
- Better IO and SMTP parsing
- Changed default header to be similar to Amavis
- Compiles and runs on systems without error checking mutexes
- Ability to drop privileges and run as a different user [Rubio Vaughan]
- Fixed config file bugs
- Virus Actions. Run a script every time a virus is found.
- By default don't use ClamAV sessions. This fixes several stability
problems that were being experienced with clamd.
Update exim-exiscan to 4.43_28 from 4.42_27
Update exim-html to 4.40 from 4.30
exim-exiscan:
28 - Added F-Secure support, thanks to Johan Thelmen <jth@home.se>.
- Upgraded SRS support to libsrs_alt 0.5 via Miles
Wilton's patch.
- REMOVED exiscan-acl implementation of custom header
placement in favor of Philip Hazel's native implementation.
However, a new option option was added for it to
mimic the behaviour of the old header_pos_middle option.
Read section 10 of exiscan-acl-spec.txt.
exim:
1. Fixed a longstanding but relatively impotent bug: a long time ago, before
PIPELINING, the function smtp_write_command() used to return TRUE or FALSE.
Now it returns an integer. A number of calls were still expecting a T/F
return. Fortuitously, in all cases, the tests worked in OK situations,
which is the norm. However, things would have gone wrong on any write
failures on the smtp file descriptor. This function is used when sending
messages over SMTP and also when doing verify callouts.
2. When Exim is called to do synchronous delivery of a locally submitted
message (the -odf or -odi options), it no longer closes stderr before doing
the delivery.
3. Implemented the mua_wrapper option.
4. Implemented mx_fail_domains and srv_fail_domains for the dnslookup router.
5. Implemented the functions header_remove(), header_testname(),
header_add_at_position(), and receive_remove_recipient(), and exported them
to local_scan().
6. If an ACL "warn" statement specified the addition of headers, Exim already
inserted X-ACL-Warn: at the start if there was no header name. However, it
was not making this test for the second and subsequent header lines if
there were newlines in the string. This meant that an invalid header could
be inserted if Exim was badly configured.
7. Allow an ACL "warn" statement to add header lines at the start or after all
the Received: headers, as well as at the end.
8. Added the rcpt_4xx retry error code.
9. Added postmaster_mailfrom=xxx to callout verification option.
10. Added mailfrom=xxxx to the callout verification option, for verify=
header_sender only.
11. ${substr_1_:xxxx} and ${substr__3:xxxx} are now diagnosed as syntax errors
(they previously behaved as ${substr_1_0:xxxx} and ${substr:_0_3:xxxx}).
12. Inserted some casts to stop certain compilers warning when using pointer
differences as field lengths or precisions in printf-type calls (mostly
affecting debugging statements).
13. Added optional readline() support for -be (dynamically loaded).
14. Obscure bug fix: if a message error (e.g. 4xx to MAIL) happened within the
same clock tick as a message's arrival, so that its received time was the
same as the "first fail" time on the retry record, and that message
remained on the queue past the ultimate address timeout, every queue runner
would try a delivery (because it was past the ultimate address timeout) but
after another failure, the ultimate address timeout, which should have then
bounced the address, did not kick in. This was a "< instead of <=" error;
in most cases the first failure would have been in the next clock tick
after the received time, and all would be well.
15. The special items beginning with @ in domain lists (e.g. @mx_any) were not
being recognized when the domain list was tested by the match_domain
condition in an expansion string.
16. Added the ${str2b64: operator.
17. Exim was always calling setrlimit() to set a large limit for the number of
processes, without checking whether the existing limit was already
adequate. (It did check for the limit on file descriptors.) Furthermore,
18. Imported PCRE 5.0.
19. Trivial typo in log message " temporarily refused connection" (the leading
space).
20. If the log selector return_path_on_delivery was set and an address was
redirected to /dev/null, the delivery process crashed because it assumed
that a return path would always be set for a "successful" delivery. In this
case, the whole delivery is bypassed as an optimization, and therefore no
return path is set.
21. Internal re-arrangement: the function for sending a challenge and reading
a response while authentication was assuming a zero-terminated challenge
string. It's now changed to take a pointer and a length, to allow for
binary data in such strings.
22. Added the cyrus_sasl authenticator (code supplied by MBM).
23. Exim was not respecting finduser_retries when seeking the login of the
uid under which it was called; it was always trying 10 times. (The default
setting of finduser_retries is zero.) Also, it was sleeping after the final
failure, which is pointless.
24. Implemented tls_on_connect_ports.
25. Implemented acl_smtp_predata.
26. If the domain in control=submission is set empty, Exim assumes that the
authenticated id is a complete email address when it generates From: or
Sender: header lines.
27. Added "#define SOCKLEN_T int" to OS/os.h-SCO and OS/os.h-SCO_SV. Also added
definitions to OS/Makefile-SCO and OS/Makefile-SCO_SV that put basename,
chown and chgrp in /bin and hostname in /usr/bin.
28. Exim was keeping the "process log" file open after each use, just as it
does for the main log. This opens the possibility of it remaining open for
long periods when the USR1 signal hits a daemon. Occasional processlog
errors were reported, that could have been caused by this. Anyway, it seems
much more sensible not to leave this file open at all, so that is what now
happens.
29. The long-running daemon process does not normally write to the log once it
has entered its main loop, and it closes the log before doing so. This is
so that log files can straightforwardly be renamed and moved. However,
there are a couple of unusual error situations where the daemon does write
log entries, and I had neglected to close the log afterwards.
30. The text of an SMTP error response that was received during a remote
delivery was being truncated at 512 bytes. This is too short for some of
the long messages that one sometimes sees. I've increased the limit to
1024.
31. It is now possible to make retry rules that apply only when a message has a
specific sender, in particular, an empty sender.
32. Added "control = enforce_sync" and "control = no_enforce_sync". This makes
it possible to be selective about when SMTP synchronization is enforced.
33. Added "control = caseful_local_part" and "control = "caselower_local_part".
32. Implemented hosts_connection_nolog.
33. Added an ACL for QUIT.
34. Setting "delay_warning=" to disable warnings was not working; it gave a
syntax error.
35. Added mailbox_size and mailbox_filecount to appendfile.
36. Added control = no_multiline_responses to ACLs.
37. There was a bug in the logic of the code that waits for the clock to tick
in the case where the clock went backwards by a substantial amount such
that the microsecond fraction of "now" was more than the microsecond
fraction of "then" (but the whole seconds number was less).
38. Added support for the libradius Radius client library this is found on
FreeBSD (previously only the radiusclient library was supported).
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Calendar
#66383 - Warning fixes in calendar code (Dave Malcom)
#64955 - C99-ism in libecal (Vincent Noel)
#59904 - Calendar query caching (Rodrigo)
#65167 - Crash sending task to GroupWise (Chen)
#64685 - Appointment requests that have been replied to give
"Invalid Object" error (Chen)
#63513 - G/W appointment acceptance fails ('invalid object') (Chen)
#64688 - mixing UTC and localtime in Appointment view (Chen)
* All
#66209 - only first source color change is saved to gconf (Michael)
#64062 - new all day recurring events do not show busy time or as
all day appts (Chen)
Other bugs
* Address Book
- disable debugging noise (William Jon McCann)
- don't search summary for groupwise system address book (Siva)
* Calendar
- support groupwise all day events
* All
- fix e-d-s issues on NPTL and AMD machines (Chris, Frederic Crozat,
Hans, Dave Malcolm)
Updated Translations:
- fr (Craig Jeffares)
- zh_TW (Craig Jeffares)
- sk (Stanislav Visnovsky)
- fa (Roozbeh Pournader)
- id (Mohammad DAMT)
- ar (Arafat Medini)
in the process. (More information on tech-pkg.)
Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and
installing .la files.
Bump PKGREVISION (only) of all packages depending directly on the above
via a buildlink3 include.
Mail Notification is a status icon (aka tray icon) that informs you if
you have new mail.
It works with system trays implementing the freedesktop.org System Tray
Specification, such as the GNOME Panel Notification Area, the Xfce
Notification Area and the KDE System Tray.
Mail Notification features include:
* Multiple mailbox support.
* Mbox, MH, Maildir, Sylpheed, POP3, IMAP and Gmail support.
* SASL authentication support.
* APOP authentication support.
* SSL/TLS support.
* Automatic detection of mailbox format.
* Immediate notification (the status icon is updated within seconds after
a mailbox changes).
* HIG 2.0 compliance.
Too many changes and bugfixes to list here, see installed file
${PREFIX}/share/doc/sympa/NEWS.
Highlights of package changes: use regular PREFIX, pervasive use of
bsd.pkg.install.mk framework, add dependencies on mhonarc package and
openssl, use bsd.options.mk framework to select MySQL or PostgreSQL support,
introduce SYMPA_VARBASE to select "/var" directory
(defaults to ${VARBASE}/sympa).
Take stewardship with previous maintainer blessing.
XXX Better startup script(s) than the ones I use should be provided, so
I'm not including them in this package.
MailScanner is a complete e-mail security system designed for use on
e-mail gateways. It protects against viruses, and detects attacks against
e-mail client packages (such as Outlook, Outlook Express, Eudora). It
can also detect almost all unsolicited commercial e-mail (spam) passing
through it and respond to all incidents in a wide variety of ways.
Not only can it scan for known viruses, but it can also protect against
unknown viruses hidden inside e-mail attachments by refusing entry to
attachments whose filenames match any given pattern. This can include
generic patterns that trap filenames attempting to hide the true filename
extension (e.g. ".txt.vbs").
It is superior to many commercial packages in its ability to handle
attacks against itself, such as Denial Of Service attacks caused by
messages containing the "Zip of Death". It is easy to install into an
existing e-mail gateway, requiring very little knowledge of sendmail
and no change to an existing sendmail configuration.
MailScanner itself is entirely open source, but it uses widely known
commercial virus scanning packages at its core. The other software it
uses is all high quality open source software, leading to a system that
can be trusted for performance and reliability.
arguments, and now correctly handles things like:
CPPFLAGS="$CPPFLAGS -I\$(top_srcdir)/intl"
in configure scripts without problems. Remove the patches in both
mail/mutt and mail/mutt-devel that worked around this limitation in
the old buildlink3 wrappers.
Bump PKGREVISION and BUILDLINK_RECOMMENDED for dependent packages due to
library major revision bump.
Noteworthy changes in gnustep-base-1.10.0:
==========================================
Note the interface version of the library has changed so that apps,
tools and libraries the use the base library need to be recompiled to
use it.
* A large majority of the library classes have been documented
thanks to the efforts of Andrew Ruder
* URL classes support persistant connections
* Mac OSX XML compatibility fixes.
- The code to eliminate the local MTA from an MX address list did
not handle the case that the local MTA could appear with different
MX preferences in both inet_interfaces and proxy_interfaces.
- The SMTP server's kiss-of-death message "421 Timeout exceeded"
wasn't guarded by setjmp().
- The SMTP server didn't update the per-session error counter when
a client was denied access with smtpd_delay_reject=no.
- The Postfix sendmail command leaked file descriptors when it was
unable to execute the postdrop mail submission command.
- The bounce daemon sent the wrong type of bounce message when a
- Plus some portability, safety and documentation fixes.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:
lib/libfoo.a
lib/libfoo.la
lib/libfoo.so
lib/libfoo.so.0
lib/libfoo.so.0.1
one simply needs:
lib/libfoo.la
and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.
Also make LIBTOOLIZE_PLIST default to "yes".
Evolution 2.0.0, 2004-09-13
----------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#59582 - Contact incompletely updated to LDAP store, address information lost/not editable (Siva)
#64084 - addressbook gui component needs to be linked with libcamel (Michael)
* Calendar
#65454 - Evolution crashes while opening newly received e-mail (JP)
#62392 - Crash on close alarm notification (Rodrigo)
#64800 - broken timezone selector (Rodney)
* Mail
#60515 - signature setting is not preserved changing "Autogenerated" to "None" (Michael)
#63377 - Crash when replying to a (specific) message (Jeff)
#62665 - Wrong Folder is deleted (Jeff)
#64377 - crash creating new folder (Michael)
#63456 - crash replying to E-mail (Michael)
Other bugs
* Addressbook
- Confirmation dialog was showing up on contact-editor close,
even if there were no changes (Hans Petter)
* Calendar
- 64 bit build fix (Rodrigo)
* Misc
- new documentation (Rodney)
Updated translations:
- ar (Arafat Medini)
- bn (Runa Bhattacharjee)
- cs (Miloslav Trmac)
- cy (Dafydd Harries, Telsa Gwynne)
- da (Martin Willemoes Hansen)
- de (Hendrik Richter)
- el (Nikos Charonitakis)
- en_CA (Adam Weinberger)
- en_GB (David Lodge)
- es (Francisco Javier F. Serrador)
- et (Priit Laes)
- fi (Ilkka Tuohela)
- hi (Rajesh Ranjan)
- hu (Laszlo Dvornik)
- id (Mohammad DAMT)
- ja (Takeshi AIHANA)
- ko (Changwoo Ryu)
- ms (Hasbullah Bin Pit)
- nb (Sigurd Gartmann)
- nl (Vincent van Adrighem)
- nn (Åsmund Skjæveland)
- no (Kjartan Maraas)
- pl (Artur Flinta)
- pt (Duarte Loreto)
- pt_BR (Raphael Higino)
- ro (Mugurel Tudor)
- ru (Leonid Kanter)
- sq (Laurent Dhima)
- sr (Danilo Segan)
- sv (Christian Rose)
- tr (Baris Cicek)
- uk (Maxim Dziumanenko)
- zh_CN (Funda Wang)
- zh_TW (Abel Cheung)
Evolution 1.5.94, 2004-08-27
----------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#61833 - Blank names in name selector (Hans Petter)
#62715 - Free-form addresses not loading in contact editor (Hans Petter)
* Calendar
#62869 - Crash: attempt to access GW tasks from evolution (Siva)
#62706 - Changing time-zone doesn't refresh calendar correctly (JP)
#62063 - Meeting description does not wrap (Jeff)
#58824 - Stray message or failing to open tasks? (Rodrigo)
#62911 - ITIP control blocks mailer opening calendar (JP)
#54101 - In itip control had "Birthdays & Anniversaries" as calendar (JP)
* Mail
#63189 - Deleting IMAP folders is too aggressive (Michael)
#63504 - Don't send IMAP commands to a disconnected socket (Jeff)
#63177 - Can't drag folder to "On This Computer" (Jeff)
#62812 - Crash when parent of search window is closed (Jeff)
#62963 - C99-isms in smime/gui/cert-trust-dialog.c (Michael)
Other bugs
* Addressbook
- Confirmation dialog was showing up on contact-editor close,
even if there were no changes (Hans Petter)
* Calendar
- Fixed problems in alarm daemon (JP, Siva, Rodrigo)
- Clean up of stray status messages for tasks (Chen)
- Don't remove GtkDialog's separator if using GTK >= 2.4.0 (Frederic)
- Fix copy/move problems when pilot syncing (JP)
- Don't mark menu accels for translation (Christian)
* Mail
- Crash in em-utils on GtkFileChooser with no name selected (Hans Petter)
* Misc
- avoid warnings on dialogs with GTK 2.4 (Frederic)
- upgrade egg tray icon (Rodrigo)
- fix memory corruption when pilot syncing tasks/events (JP)
Evolution Data Server 1.0.0, 2004-09-13
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#59582 - Contact incompletely updated to LDAP store, address information lost/not editable
#63385 - Evolution crash - Adding two email ids with same name
* Calendar
#57443 - ics import crashes
Updated Translations:
- da (Martin Willemoes Hansen)
- ar (Arafat Medini)
- nn (Åsmund Skjæveland)
- en_GB (David Lodge)
- cy (Telsa Gwynne)
- el (Kostas Papadimas)
- tr (Baris Cicek)
Evolution Data Server 0.0.99, 2004-08-27
----------------------------------------
Bugzilla bugs fixed (see http://bugzilla.ximian.com/show_bug.cgi):
* Addressbook
#63844 - avoid locking if authentication needed during auto completion (Siva)
#63255 - ignore name prefixes when completing (Siva)
* Calendar
#62857 - display recurring events upon creation for groupwise (Chen)
#61782 - handle importing objects with no UID (Rodrigo)
#62655 - don't crash with NULL uri (Hans)
* All
#63051 - solaris build fixes (notzed)
Other bugs
* Calendar
- add has-alarms-in-range query type (Rodrigo)
- always set return value for e_cal_set_default_timezone (Frederic Crozat)
- don't set the same default timezone multiple times (JP)
- don't get all items from the groupwise server every time (Chen)
* Addressbook
- and thread safety flag for libdb (Toshok)
- throw error when deleting system address book (Siva)
- avoid unfiltered system address book searchs (Siva)
- use cursors to populate the groupwise cache (Siva)
- prevent groupwise server crash by not doing to cursor requests at the same time (Chen)
- immediately show meeting status updates in GUI for groupwise (Chen)
* All
- fix warnings (Frederic Crozat)
- set cache file name properly (Siva)
Updated Translations:
- pt_BR (Gustavo Maciel Dias Vieira)
- es (Francisco Javier F. Serrador)
- da (Martin Willemoes Hansen)
- de (Christian Neumair)
- hu (Laszlo Dvornik)
- nb (Kjartan Maraas)
- no (Kjartan Maraas)
- sq (Laurent Dhima)
- uk (Maxim Dziumanenko)
- az (Metin Amiroff)
- ja (Takeshi AIHANA)
- pt (Duarte Loreto)
- fi (Ilkka Tuohela, Tommi Vainikainen)
Changes:
0.8
- clamsmtpd now uses a configuration file
- Transparent proxy support [Andreas Steinmetz]
- Compile option -Wall only enabled on debug builds
- Sample script changed due to configuartion file
- Fixed other minor bugs