summaryrefslogtreecommitdiff
path: root/mail
AgeCommit message (Collapse)AuthorFilesLines
2001-04-12Add a CONFLICTS entry for ja-mh6-*wennmach1-1/+2
Found by pkgconflict.
2001-04-11fix pkgname to be legal - postfix-20010228-pl1 is *not*hubertf1-2/+2
Remember: NO '-' IN PKG VERSION!
2001-04-11Update:jun2-4/+4
1.95b119 (2001/04/09) mew-dist release * Raw text strings in parameters are decoded before splited with ";". * ":" for mew-summary-analyze-again-alternative. * Defining mew-use-alternative. * mew-face-header-date. Takashi SATOH <satoh@aurora.dti.ne.jp> * C-cC-y for mew-summary-execute-command. * "ml2" for sorting. Kentaro Inagaki <inagaki@tg.rim.or.jp>
2001-04-10Fix build error on NetBSD systems without "intl" library in base system.tron1-1/+2
2001-04-10always add dependency to canna.itojun1-3/+3
2001-04-10visit mail/cueitojun1-1/+2
2001-04-10cue - a lightweight email readeritojun4-0/+50
2001-04-09Remove unneeded '-' before ${MKDIR} or ${INSTALL_DATA_DIR}wiz1-2/+2
2001-04-08use latest IPv6 patch. (1) issue with host:port syntax in master.cfitojun2-4/+4
(original bug, tickled by IPv6 support) (2) use RBL check only for IPv4 addrs
2001-04-08upgrade to 3.0.73.itojun6-37/+30
Sat Mar 17 19:29:59 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com> . Description: Added credits for Manoj Srivastava, the Debian packager, for his wonderful work. Added two variables: domain and hidenet, in order to address the Debian bug #72737. The values hardwired at Configure time in mailagent are now used only up to the moment where we have parsed the user configuration. Forgot to increment buf in pool_read(), in the C filter. This was an important bug, which had never hit me however. I noticed it by looking a the Debian patches. Use the "email" config var verbatim in FORWARD. It used to determine the Resent-From: by constructing a full email address, but this is wrong. We should use whatever the user said, and it is up to MTAs to fix the address should it be unqualified. Removed unused var in POST. Fixed longstanding lie in man; "To: gue@eiffel.fr" now works as advertised in the man page. It also means you can write: To Cc: user@example.com instead of the heavier: To Cc: /^user@example\.com$/ However, if you wish to use more complex patterns, you still have to use the /^/ anchored form. Create a new filter/address test to test various matching patterns on address selectors. Try to run tests as nobody when super-user -- from Debian. Fixed test rules for UNIQUE, removing spurious REJECT -f. The error present in the man page had also propagated to the test cases. . Files changed: * agent/files/setup.cf, agent/files/mailagent.cf: Added two variables: domain and hidenet. * agent/filter/io.c: Forgot to increment buf in pool_read() -- from Debian. * agent/magent.sh: Mydomain and hiddennet now superseded by config vars. Changed email_addr() and domain_addr() to honour new config vars. * agent/man/mailagent.SH: Documented new config vars: domain and hidenet. Various fixes from bug reports on Debian. * agent/pl/actions.pl: Use the "email" config var verbatim in FORWARD. Removed unused var in POST. * agent/pl/builtins.pl: Hostname computed via domain_addr() to honour hidenet. * agent/pl/matching.pl: Fixed longstanding lie in man; "To: gue@eiffel.fr" now works. * agent/pl/parse.pl: Use the "domain" config var instead of mydomain. * agent/pl/read_conf.pl: Computes suitable defaults for new "domain" and "hidenet". * agent/pl/rfc822.pl: Use "domain" config var instead of mydomain. * agent/test/TEST: Try to run tests as nobody when super-user -- from Debian. * agent/test/actions: Fixed test rules for UNIQUE, removing spurious REJECT -f. * agent/test/filter/address.t: Created. * agent/test/filter/list.t: Unlink files we expect to be created before running command. * agent/test/rules: Added new filter/address tests. Tue Mar 13 14:27:14 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com> . Description: Made fixup of header fields in POST be a warning in the logs, instead of a mere notice. Added fix for broken continuations in parse_mail(). I have started receiving messages with invalid header continuations, and this led to failure in POST: the remote news server is much more strict on headers than mail agents. Fixed RESYNC, copied continuation fix from parse_mail(). Added support for SUBST/TR on mail headers: it is now possible to say something like: SUBST Subject: /foo/bar/g; to alter header field in place. See the updated manual page for details. Added rule to suppress () and {} in message ids, since again it led to failures when using POST. Added test cases for SUBST/TR on header fields. The newsgate program now computes the In-Reply-To field via a regexp instead of a split on References to cope with bad References line that dont have a space between message ids. . Files changed: * agent/man/mailagent.SH: Documented SUBST/TR on header fields. * agent/pl/actions.pl: Made fixup of header fields in POST be a warning. Fixed RESYNC, copied continuation fix from parse_mail(). Added support for SUBST/TR on mail headers. * agent/pl/filter.pl: Changed SUBST/TR parameter parsing to support header fields. * agent/pl/header.pl: Added rule to suppress () and {} in message ids. * agent/pl/history.pl: Message ids are now cleaned-up via msgid_cleanup(). * agent/pl/parse.pl: Added fix for broken continuations in parse_mail(). * agent/test/actions: Added test cases for SUBST/TR on header fields. * agent/test/cmd/subst.t: Added test cases for SUBST on header fields. * agent/test/cmd/tr.t: Added test cases for TR on header fields. * misc/news/ml.map: Typo fixes in leading comment. * misc/news/newsgate: The in-reply-to field is now computed via a regexp. Wed Jan 10 18:10:29 MET 2001 Raphael Manfredi <Raphael_Manfredi@pobox.com> . Description: Updated date in README and my e-mail address. Documented my CPAN directory URL in agent/README. Compilation bug fixes in filter: . switched to dynamic init of standard file array for GNU libc . fixed incorrect selection of sys_errlist[] Changed semantics of "tome": the '.' and '_' in names is no longer stripped. If your full name was, say, raphael_manfredi, then you could set "tome: manfredi" and it worked. The heuristics were bad, and it prevented doing useful things. Let's drop support for that and see if anyone complains. ;-) Updated POST to current practices. In particular, it has been tested to establish a mail -> news gateway with INN 1.7.2. POST also support a new "-b" switch to cause article biffing, just like saving in a folder triggers mail biffing. The following new features are available in POST: . fix lines like From: A.B <a@b> into From: "A.B" <a@b> . remove duplicate Content-Transfer-Encoding and other MIME headers . generate proper References: line and fixes bad Message-ID lines. . fix date if too old or too far in the future In the new misc/news directory, you'll find a program and instruction to setup a news -> mail gateway (tested with INN 1.7.2), thereby making it possible to build a bi-directional mail <=> news gateway with mailagent. Fixed wrong lexical attribute synthesis for numbers during date parsing, which cause 08 and 09 to not parse at all. Fixed sed command that produced bad dependencies on linux in the agent/pl/utmp directory. Fixed dates for the SELECT test to avoid failures past year 2001. . Files changed: * agent/filter/io.c: Switched to dynamic init of standard file array for GNU libc. * agent/filter/logfile.c: Fixed incorrect selection of sys_errlist[]. * agent/man/mailagent.SH: Changed semantics of "tome". Updated POST to current practices. Documented biffing macros for news article. * agent/pl/actions.pl: Replaced calls to fake_date() by mta_date(). Rewrote the POST command, and added the -b switch. * agent/pl/biff.pl: Added support for news article biffing. * agent/pl/getdate.pl: Fixed wrong lexical attribute synthesis for numbers. * agent/pl/header.pl: New mta_date() routine replaces old fake_date(). Added msgid_cleanup() and parsedate() routines. * agent/pl/parse.pl: Allow direct IP numbers in Received fields. * agent/pl/period.pl: Added relative_age(). * agent/pl/rfc822.pl: Dropped support of '_' and '.' stripping in last_name(). Added gen_message_id(). * agent/pl/runcmd.pl: New -b switch for POST to request biffing. * agent/test/actions: Fixed dates for the SELECT test to avoid failures past 2001. * agent/test/cmd/vacation.t: Changed "tome" settings due to dropping of dot stripping. * misc/news/newsgate, misc/news/ml.map: Created.
2001-04-07Make the message tell the truth.kim1-6/+3
2001-04-07Add optional setting for placing the default mailbox in the user home dir.kim1-1/+9
2001-04-06Removed the post-patch target as it had no effect and justkim1-10/+1
confuses people (or at least me).
2001-04-05Update to 5.7.7. (Hi Charles!)wiz1-2/+2
2001-04-03Be more explicit in how to restart inetd, and don't offer rebooting thewiz1-4/+7
machine as a suggestion. By Dieter Baron.
2001-04-03Update teapop to 0.3.0zuntum4-22/+21
0.3.0 * New version system. * The license has been modified, yet again to comply with BSD-type licenses. ! Clean up of Makefiles and dependencies added. + Teapop will sleep for 3 seconds after a failed login to slow down "brute force" attackers. + Maildir support added. + Added support for reporting clients IP to a whoson server, after a successful authentication. + Support for AIX. (Patch by: "Oleg O. Orlov" <OOO@vmts.ru>) ! Changed the htpasswd authentication method so it will ignore anything after the two first fields. This makes Teapop also support "real" passwd files. (Patch by: Grant Kaufmann <grantcode@netizen.co.za>) * Released: 2-Apr-2001 Maildir support was added, so I'm glad to take over maintainership.
2001-04-03Update:jun2-4/+4
1.95b118 (2001/04/01) mew-dist release * Load mew-theme-file if non-nil. Hideyuki SHIRAI <shirai@rdmg.mgcs.mei.co.jp> * Defining mew-syntax-get-entry-by-cid for mew-w3m.el. * Supporting Multipart/Alternative. See mew-mime-multipart-alternative-list. * Putting face except line delimiters. Hideyuki SHIRAI <shirai@rdmg.mgcs.mei.co.jp> * s/cite3/cite5/ in mew-theme.el. Takashi SATOH <satoh@aurora.dti.ne.jp>
2001-04-02upgrade to 20010228-pl01.itojun4-30/+6
20010313 Bugfix: the RFC 822 untokenizer quoted newlines inside comments. File: global/tok822_parse.c. 20010316 Cleanup: removed an extraneous warning when a queue file write error happened. 20010321 Workaround: LMTP connection caching never worked for destinations starting with unix: or inet:. File: lmtp/lmtp_connect.c. 20010322 Portability: Solaris <2.6 does not have srandom() and random() in libc. File: util/rand_sleep.c. It does not have to be cryptographically strong. Bugfix: the fast ETRN flush server could not handle [ipaddr] or domain names with one-character hostname part. This fix changes the destination to logfile name mapping, so that you need to populate the new files with "sendmail -q". The old files go away automatically. File: flush/flush.c. 20010327 Speed up mailq (sendmail -bp) display by flushing output after each file. File: showq/showq.c. Portability: missing string.h includes, %p wants (void *), Lamont Jones, HP. 20010328 Bugfix: swapped logic caused cleanup to stall when the queue file size exceeded the file size limit by less than one the VSTREAM buffer size, so that the "file too big" was detected after flushing the last queue file record. File: cleanup/cleanup.c. 20010329 Portability: workaround for missing prototype problem in dict_ldap.c. This module should move to the global directory, because it depends on Postfix main.cf parameter information.
2001-04-02Update:jun3-5/+7
1.95b117 (2001/04/01) mew-dist release * Try to send a message even if smtp-auth is t and a server does not support SMTP AUTH. * Defining mew-mime-content-disposition. Obsoleting mew-content-disposition-inline-list and mew-mime-content-type-ignore-cdp. * Creating mew-theme.el. * Try to decode even if a message is truncated.
2001-04-01Use WRKSRC when compiling/installing instead of WRKDIRzuntum1-3/+3
2001-03-30Upgrade to 5.7.7. Needs gmake now.mycroft4-16/+17
(Unfortunately, this doesn't fix my KPOP problem.)
2001-03-29Patch from the squirrelmail cvs repository:bouyer2-1/+16
Revision 1.46.2.1: * UW workaround improved, methinks (1.0 branch) Fixes a problem when used with imap-uw: 1.0.3 couldn't read folders in subdirectories.
2001-03-29Update:jun2-4/+4
1.95b116 (2001/03/29) mew-dist release * last:N is supported for range. * Setting mew-addrbook-orig-alist with unquoted strings when C-uC-cC-a. SUGIMORI <taro@fc.jpn.org> * A bug fix for Bcc: vs +backup. * Sender: is now decided when the message is sent. * A patch for contrib/mew-summary-hl.el. Hideyuki SHIRAI <shirai@rdmg.mgcs.mei.co.jp> * Using delete-windows-on so that scrambled drafts are not displayed. * Removing bold from the comment face. Shun-ichi TAHARA <jado@flowernet.gr.jp> * defface -> faces group. Ryutaroh Matsumoto <ryutaroh@rmatsumoto.org>
2001-03-27Move majordomo's digest man page to section 8, so that it doesn'tagc5-26/+53
conflict with digest(1)'s manual page. The majordomo digest command lives in libexec, anyway. Bump version to majordomo-1.94.4nb1 Addresses PR 12385, from Jun-ichiro itojun Hagino
2001-03-27Change BUILD_DEPENDS semantics:hubertf5-15/+15
first component is now a package name+version/pattern, no more executable/patchname/whatnot. While there, introduce BUILD_USES_MSGFMT as shorthand to pull in devel/gettext unless /usr/bin/msgfmt exists (i.e. on post-1.5 -current). Patch by Alistair Crooks <agc@netbsd.org>
2001-03-25Update to 1.15mjl4-20/+10
2001-03-24add & enable teapopzuntum1-1/+2
2001-03-24Initial import of teapop-0.28zuntum8-0/+82
Teapop is yet another RFC1939 compliant POP3 server. It includes flexible virtual domain support that distinguishes it from all other POP3 servers. Fixes pkg/11969 by me.
2001-03-23Fix compilation with SSL and kerberos on -current (and hopefully 1.5).wiz1-1/+13
Still works on 1.4.2.
2001-03-23pull latest IPv6 patch. corrects source address selection on outgoing,itojun2-4/+4
if config has "inet_interfaces=127.0.0.1". reported by thorpej.
2001-03-20second attempt to nuke postfix-current (the files were copied to thehubertf9-543/+0
postfix pkg, per PR 12426.
2001-03-20resurrect, after nuking the right files in the wrong dir.hubertf9-0/+543
2001-03-20postfix-current is now known as postfixhubertf1-2/+1
2001-03-20replaced by postfix pkghubertf9-543/+0
2001-03-20Move files from postfix-current to postfix, as that's actually thehubertf52-1048/+369
latest release (it's also in the base src). Adresses PR 12426 by Martti Kuparinen <martti.kuparinen@iki.fi>
2001-03-20Update mew to 1.95b115 (2001/03/20) mew-dist releasejun2-4/+4
* Using defface. Now three kinds of colors, TTY, bright-background, dark-background can be defined. * A bug fix for X-Face:. * A bug fix for "." of end-of-* * Overriding smtp-auth, smtp-auth-list, smtp-user, smtp-helo-domain when sending a message in +queue.
2001-03-19upgrade to 1.13.itojun2-4/+4
smtp.c: max number of RCPT/SMTP was limited to 99 (should be 100). reported by Koji Kawano <kawano@eng.trans-cosmos.co.jp> configure.in: Solaris8 support suggested by Toshio Hiraga <Toshio.Hiraga@jp.sony.com>
2001-03-18pull postfix-users patch to correct sprious backslash.itojun4-7/+31
update IPv6 patch. fixes src/dst address family mismatch in src/smtp.
2001-03-18Update:jun3-134/+140
1.95b114 (2001/03/18) mew-dist release * mewencode.1 and mewls.1 * Ensuring downcase of shortname in Addrbook. * contrib/mew-nmz-fixer.el. Hideyuki SHIRAI <shirai@rdmg.mgcs.mei.co.jp> * CID: hack. Hideyuki SHIRAI <shirai@rdmg.mgcs.mei.co.jp> * A color patch for Emacs 21.
2001-03-16Change my email address to zuntum@netbsd.orgzuntum1-2/+2
2001-03-16Updated to vm-6.92.jtb2-40/+40
VM 6.92 released (11 March 2001) * vm-imap-check-mail: throw to 'end-of-session instead of 'done. Fixes problem of vm-spooled-mail-waiting not being set. * vm-su-do-recipients: If there is no To or Apparently-To header, use Newsgroups if available. * vm-mime-display-external-generic: use a unibyte temp buffer for base64 decoding if using FSF Emacs MULE. Otherwise our old friend \201 crashes the party. * vm-mime-find-leaf-content-id-in-layout-folder: add missing layout argument to vm-mime-find-leaf-content-id. * vm-mime-parse-entity: fixed regexps that match an empty content description so that they match descriptions that only contain spaces. * vm-su-do-date: make +/- mandatory in the numeric tiemzone spec. First digit of numeric timezone spec must be 0 or 1. * vm-fill-paragraphs-containing-long-lines: ignore errors generated by fill-paragraph. * moved the code that catches the font-lock search bound error from the XEmacs MIME composition encoder to the FSF Emacs encoder. * vm-mime-charset-internally-displayable-p: allow variable vm-mime-default-face-charsets to apply to MULE-enabled Emacs and XEmacs. VM 6.91 released (1 March 2001) * vm-mime-can-display-internal: check charset to verify that we can display it when checking text/html. * vm-auto-archive-messages: hide value of last-command when calling vm-save-message. * vm-mime-find-leaf-content-id: removed second arg in call to vm-mm-layout-id since it only accepts one argument. * vm-mime-transfer-encode-region: \\n -> \n in armor-dot check regexp string. * vm-mime-parse-entity-safe: dropped (sleep-for 2). No one cares about syntax errors. * vm-mime-base64-encode-region: if call to base64-encode-region fails with wrong-number-of-arguments error call it with only two args and do the B encoding cleanup separately. * vm-mime-base64-decode-region: don't use the FSF Emacs base64 decoding function, since it fails completely if it encounters characters outside of the BASE64 alphabet. * vm-mime-attachment-auto-type-alist: added the usual PDF, Quicktime and Excel file extensions. * vm-imap-move-mail: trying using obsolete RFC822.PEEK if BODY.PEEK fails. * vm-imap-retrieve-to-crashbox: support use of obsolete RFC822.PEEK. * vm-so-sortable-datestring: use vm-timezone-make-date-sortable instead of the bare timezone-make-date-sortable, which is less capable of parsing badly formed Date headers. * vm-mime-convert-undisplayable-layout: save the content type parameters from the old type and give them to the new type. * all your base are belong to us
2001-03-14Correct path to imapd in symlink to sbin/rimapd.jlam1-2/+2
2001-03-14Update squirrelmail to 1.0.3. Pkgsrc changes include setting the examplejlam5-11/+23
Apache URL to http://www.domain.com/squirrelmail/ instead of /mail/ to access squirrelmail. Changes from version 1.0.2: - Many i18n enhancements/fixes - Fixed bug with default theme path being set incorrectly - Fixed problem when sending/forwarding multiple attachments - Made folder drop-down list consistent in look to the other drop-downs - Fixed problem where some attachment filenames would not be displayed - Added Finnish help files by Teemu Junnila <teejun@vallcom.com> - Updated Norwegian translation - Updated Brazillian Portuguise translation
2001-03-13Remove line accidentally left in Makefile in previous fix.jlam1-2/+1
2001-03-13Fix installation on a.out. Addresses pkg/12361.wiz1-5/+3
2001-03-13Build _pic.a library without using libtool internals.jlam1-11/+6
2001-03-13Update Mew to 1.95b113jun2-4/+4
1.95b113 (2001/03/13) mew-dist release * Colors are available on Emacs21/XEmacs with the -nw option. * M-a -> mew-summary-addrbook-edit. * Fixing duplicated entries buf of mew-summary-addrbook-add. * SMTP bug fix. * SAMBA support.
2001-03-13Compile in LDAP-support for addressbook if PINE_USE_LDAP is set inhubertf1-3/+12
/etc/mk.conf. Patch submitted by John Darrow <John.P.Darrow@wheaton.edu> in PR 9760.
2001-03-12Remove author's name from COMMENT and remove offensive language from DESCRzuntum2-8/+3
2001-03-12Fix typo (we don't want the INSTALL file to end up in /)wiz1-2/+2