- 23 Jun, 2005 1 commit
-
-
(mu_set_mail_directory,mu_set_folder_directory) (mu_mail_directory,mu_folder_directory) (mu_construct_user_mailbox_url,mailbox_get_flags): New functions.
Sergey Poznyakoff authored
-
- 17 May, 2005 1 commit
-
-
- 02 Jun, 2004 1 commit
-
-
- 26 Jul, 2003 1 commit
-
-
- 22 Feb, 2003 1 commit
-
-
- 09 Feb, 2003 1 commit
-
-
- 29 Dec, 2002 1 commit
- 05 Dec, 2002 1 commit
-
-
- 18 Sep, 2002 1 commit
-
-
- 13 Aug, 2002 1 commit
-
-
- 13 Jul, 2002 1 commit
-
-
mailbox name does not start with a '/' and does not contain a protocol specification, assume it is a file name relative to the cwd and convert it to the absolute file name.
Sergey Poznyakoff authored
-
- 28 Mar, 2002 2 commits
-
-
-
(tilde_expand): Return MU_ERR_NO_SUCH_USER if an invalid username was specified.
Sergey Poznyakoff authored
-
- 25 Mar, 2002 1 commit
-
-
have to include the header for the functions you want to use, but you can change a header without causing a recompile of everything. Also added some missing LGPL file headers.
Sam Roberts authored
-
- 15 Mar, 2002 1 commit
-
-
when required. * mailbox/include/imap0.h: warning: comma at end of enumerator list. * mailbox/locker.c (locker_set_expire_time): warning: declaration of `time' shadows global declaration (locker_get_expire_time): declaration of `time' shadows global declaration * mailbox/mbx_default.c (mu_path_maildir): Use "const" to reinforce a constant string. * include/mailutils/mailbox.h (mu_path_maildir): constant "const". * mailbox/mbx_mbox.c (mbox_append_message): status already declared. * mailbox/memory_stream.c (_memory_truncate): Cast before doing the comparison. * mailbox/parse822.c (parse822_time): useless ';' outside function definition. * mailbox/smtp.c (smtp_send_message): warning: declaration of `from' shadows a parameter declaration of `to' shadows a parameter.
Alain Magloire authored
-
- 12 Mar, 2002 1 commit
- 27 Feb, 2002 1 commit
-
-
mailbox_open_default() supports the following naming schemes: % --> system mailbox for the real uid %user --> system mailbox for the given user ~/file --> /home/user/file ~user/file --> /home/user/file +file --> /home/user/Mail/file =file --> /home/user/Mail/file
Sergey Poznyakoff authored
-
- 19 Feb, 2002 1 commit
-
-
- 09 Feb, 2002 1 commit
-
-
- 21 Jan, 2002 1 commit
-
-
- 01 Nov, 2001 1 commit
- 04 Sep, 2001 1 commit
-
-
* include/mailutils/parse822.h: Add a prototype for parse822_skip_nl(). * lib/Makefile.am: add fgetpwent.c * lib/fgetpwent.c: New file. * mail/from.c (mail_from): Use the cover functions attribute_is_xxxx() instead of getting the flag. * mailbox/attribute.c: Cleanup the mess. attribute_set_{read,delete,seen,flagged,answered}. attribute_unset_{read,delete,seen,flagged,answered}. attribute_is_{read,delete,seen,flagged,answered} should be no more then cover functions calling attribute_set_flags(), attribute_get_flags() and attribute_unset_flags(). * mailbox/folder_imap.c: MU_ATTRIBUTE_READ, is not part of IMAP protocol use \\Seen. * mailbox/mbx_imap.c: Remove the hack trying to reconnect, it does not work. * mailbox/mbx_pop.c(pop_get_messages): Set the new functions for the attribute. (pop_get_attribute): New functions. (pop_set_attribute): New functions. (pop_unset_attribute): New functions. (pop_attr_flags): Removed. * mutil.c (mu_hex2ul): GNU coding std. (parse822_time): Do not use tzname as a variable name tzname is global variable in libc, better clear away. (parse822_date_time): Likewised. * pop3d/Makefile.am: add virtual.c * pop3d/pop3d.c (main): register getpwnam_ip_virtual, getpwnam_host_virtual * pop3d/pop3d.h: declare, getpwnam_ip_virtual(), getpwnam_host_virtual(). * pop3d/virtual.c: New file.
Alain Magloire authored
-
- 30 Aug, 2001 1 commit
-
-
- 25 Aug, 2001 1 commit
-
-
* acconfig.h: Added support for new MySql addition to mailutils * configure.in: * MySql/Makefile.am: * MySql/MySql.c: Mini lib to link to when mysql support * MySql/MySql.h: enabled (with --enable-mysql) * doc/Readme.mysql: Readme file for setup. * imap4d/login.c: * mailbox/mbx_default.c: The Patch pretty much works the same * mailbox/mutil.c: all around. if getpwnam() returns null * mailbox2/mutil.c: then your db is checked for the user, * pop3d/apop.c: and the struct is filled if found, * pop3d/user.c: returns null if not. If shadow support is used, then the same is done with getspnam(). * examples/mail.MysqlMailer.c: Simple sendmail backend support.
Alain Magloire authored
-
- 24 May, 2001 1 commit
-
-
- 20 May, 2001 1 commit
-
-
- 24 Apr, 2001 1 commit
-
-
- 16 Jan, 2001 1 commit
-
-
address.c mime.c misc.c: Always cast to (unsigned char) when using the ctype functions like isspace(); mbx_default.c: If _PATH_SENDMAIL not set via paths.h use "/usr/spool/mail" message.c: uidl is now <md5 . time . sequene> tcp.c: INADDR_NONE is not define on solaris define it to -1.
Alain Magloire authored
-
- 15 Nov, 2000 1 commit
-
-
the count that would have been written, the latter is C99 conformant but the former is also in wide use since snprintf () was not part of ANSI C, or posix.
Alain Magloire authored
-
- 13 Nov, 2000 1 commit
-
-
- 24 Oct, 2000 1 commit
-
-
via dlopen() different type of mailboxes and mailer. For that the client must register the mailbox. So in the future we can have something like plugin ... still a hack/draft. Commited some code to be able to send mail with sendmail or via SMTP.
Alain Magloire authored
-
- 02 Sep, 2000 1 commit
-
-
mailutils/from will use the new mailbox API mailutils/mail will use the new mailbox API to convert pop3d(still use libmailbox the old API). mailutils/mail is incomplete and should is equivalent to LEGACY mail from Unix98.
Alain Magloire authored
-
- 08 Aug, 2000 1 commit
-
-
I broke it ... sigh. file_stream.c header.c locker.c mapfile_stream.c mbx_default.c mbx_pop.c code cleanup put some comments in there ;-)
Alain Magloire authored
-
- 03 Jul, 2000 1 commit
-
-
shortcut for getenv(MAIL) etc ... to get the default mailbox. And could serve as a hook to Jeff/Jakob idea of config file.
Alain Magloire authored
-