Re: [courier-users] authmysql vs apostrophe

2008-04-23 Thread Gordon Messmer
Peter Burden wrote: It may be worth using the MySQL function mysql_real_escape_string() which should handle anything that could cause problems. Programmatically this would be much less effort than using prepared statements which require a considerable amount of coding. I think you've missed

Re: [courier-users] Standard Signatures

2008-04-23 Thread Gordon Messmer
Peter Burden wrote: Since then, I've cut some code and have a working signing filter. If anybody wants to have a look and let me know about any bugs (obvious or subtle), source code is at http://web.ptwol.net/sigfilter/sigfilter.c It's in standard C and uses a MySQL database. There are some

Re: [courier-users] Standard Signatures

2008-04-23 Thread Peter Burden
On 23/04/2008, Gordon Messmer [EMAIL PROTECTED] wrote: Peter Burden wrote: Since then, I've cut some code and have a working signing filter. If anybody wants to have a look and let me know about any bugs (obvious or subtle), source code is at http://web.ptwol.net/sigfilter/sigfilter.c

[courier-users] authsqlite

2008-04-23 Thread Fabiano Sidler
Hi folks! I've written a backend for authlib to sqlite3. It's not complete yet, though, there are still sever{e,al} security checks missing, which I'll fix after- wards. Now: what exactly needs to be done to integrate it into the source? Sorry for asking such a question, but I mainly develop in

Re: [courier-users] courier imap and mailquota

2008-04-23 Thread suresh p
On Wed, 16 Apr 2008 Sam Varshavchik wrote : suresh p writes: Â On Tue, 15 Apr 2008 Sam Varshavchik wrote : suresh p writes: On Tue, 15 Apr 2008 Sam Varshavchik wrote : suresh p writes: Hello, I am using courier-imap and openldap. I have a field mailQuotaSize: 100

Re: [courier-users] courier imap and mailquota

2008-04-23 Thread suresh p
On Wed, 16 Apr 2008 Sam Varshavchik wrote : suresh p writes: Â On Tue, 15 Apr 2008 Sam Varshavchik wrote : suresh p writes: On Tue, 15 Apr 2008 Sam Varshavchik wrote : suresh p writes: Hello, I am using courier-imap and openldap. I have a field mailQuotaSize: 100 (1MB)

[courier-users] [RANT] Will there ever be a solution for this?!

2008-04-23 Thread Arturo 'Buanzo' Busleiman
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Remote host said: 534 Message header size, or recipient list, exceeds policy limit. [BODY] I can't keep bouncing messages from yahoogroups, googlegroups, etc. And it's not easy to patch courier every time a new version is out. Please, PLEASE,

Re: [courier-users] Standard Signatures

2008-04-23 Thread Gordon Messmer
Peter Burden wrote: On 23/04/2008, Gordon Messmer [EMAIL PROTECTED] wrote: Peter Burden wrote: Since then, I've cut some code and have a working signing filter. If anybody wants to have a look and let me know about any bugs (obvious or subtle), source code is at

Re: [courier-users] Standard Signatures

2008-04-23 Thread Peter Burden
On 23/04/2008, Gordon Messmer [EMAIL PROTECTED] wrote: Peter Burden wrote: On 23/04/2008, Gordon Messmer [EMAIL PROTECTED] wrote: Peter Burden wrote: Since then, I've cut some code and have a working signing filter. If anybody wants to have a look and let me know about any

[courier-users] Fwd: Can't login to IMAP: pass MySQL authentication, permission denied

2008-04-23 Thread Adinda Praditya
Hi all, I installed courier-imap-4.3.1 i with rpm built as vmail. Then i filed to login (as virtual user stored in MySQL) to IMAP. Here's my maillog: Apr 23 08:46:42 mercury73 imapd: Connection, ip=[:::203.125.189.34] Apr 23 08:46:42 mercury73 authdaemond: received auth request,

Re: [courier-users] authsqlite

2008-04-23 Thread Sam Varshavchik
Fabiano Sidler writes: Hi folks! I've written a backend for authlib to sqlite3. It's not complete yet, though, there are still sever{e,al} security checks missing, which I'll fix after- wards. Now: what exactly needs to be done to integrate it into the source? Sorry Clean up and document the

Re: [courier-users] courier imap and mailquota

2008-04-23 Thread Sam Varshavchik
suresh p writes: On Wed, 16 Apr 2008 Sam Varshavchik wrote : suresh p writes:   On Tue, 15 Apr 2008 Sam Varshavchik wrote : suresh p writes: On Tue, 15 Apr 2008 Sam Varshavchik wrote : suresh p writes: Hello, I am using courier-imap and openldap. I have a field mailQuotaSize:

Re: [courier-users] Standard Signatures

2008-04-23 Thread Gordon Messmer
Peter Burden wrote: I'm reworking the code that signs multipart messages. A test confirmed that it did sign text/plain attachments which is very wrong. The encapsulation you suggest would, I imagine, be multipart/related but I'd want to be sure that all likely mail clients handle this

Re: [courier-users] authmysql vs apostrophe

2008-04-23 Thread Alessandro Vesely
Gordon Messmer wrote: Peter Burden wrote: It may be worth using the MySQL function mysql_real_escape_string() which should handle anything that could cause problems. Programmatically this would be much less effort than using prepared statements which require a considerable amount of coding.