[Dbmail] PostgreSQL and POP3 DELE not working.

2002-07-23 Thread Eric Renfro
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I just recently installed dbmail from cvs source, using the PostgreSQL database method, and it's working superbely all but for one bug so far seen. It's not deleting mail from the db on POP3. So mail is just building up endlessly. - -- Eric Renfro

Re: [Dbmail] PostgreSQL and POP3 DELE not working.

2002-07-23 Thread Jeff Brenton
Hello Eric, ER> It's not deleting mail from the db on POP3. So mail is just building up ER> endlessly. Are you running the dbmail-maintenance, to actually issue the delete statements to the database? Normally, the POP3 delete command simply tags the message with a status of "002", which dbmail-ma

[Dbmail] How to allow some users to send to intranet but not to internet

2002-07-23 Thread Fernando Maciel Souto Maior
Hello, I was asked to configure an email server that permit only local relaying to some users of the domain and remote/smtp relaying to some other users. Any idea about how to implement it using DbMail? Thanks, Fernando Maior Infokeep Informatica Ltda http://www.

Re: [Dbmail] How to allow some users to send to intranet but not to internet

2002-07-23 Thread Chris Hilts
Fernando Maciel Souto Maior wrote: I was asked to configure an email server that permit only local relaying to some users of the domain and remote/smtp relaying to some other users. Any idea about how to implement it using DbMail? You wouldn't actually do this with dbmail, it'd be a function

RE: [Dbmail] LibMySQL

2002-07-23 Thread James Cook
I am having a similar problem, I have just got the latest CVS I get: [EMAIL PROTECTED]:/home/dbmail# ls -a /usr/local/mysql/lib/ . .. libdbug.a libmygcc.a libmysqlclient.a libmysqlclient_r.a libmystrings.a libmysys.a [EMAIL PROTECTED]:/home/dbmail# make cc -Wall -O2 -D_BSD_SOURCE -D

Re: [Dbmail] LibMySQL

2002-07-23 Thread Blake
It should be -lmysqlclient not -libmysqlclient.

RE: [Dbmail] LibMySQL

2002-07-23 Thread James Cook
[EMAIL PROTECTED]:/home/dbmail# make cc -Wall -O2 -D_BSD_SOURCE -D_SVID_SOURCE main.c -o dbmail-smtp list.o debug.o pipe.o mime.o mysql/dbmysql.o dbmd5.o md5.o bounce.o forward.o memblock.o mysql/dbauthmysql.o -L/usr/local/mysql/lib -lmysqlclient -lcrypt /usr/local/mysql/lib/libmysqlclient.a(

Re: [Dbmail] LibMySQL

2002-07-23 Thread Blake
Looks like it wants libz as well, try adding a -lz to the link line.

[Dbmail] Sendmail/procmail/dbmail

2002-07-23 Thread Ryan Rothert
Is there any documentation on howto setup dbmail with Sendmail/Procmail... Id like to replace my sendmail/procmail/cyrus box with sendmail/procmail/dbmail ... Thanks, Ryan [EMAIL PROTECTED]

Re: [Dbmail] LibMySQL

2002-07-23 Thread Gavin B. Dunne
This did it for me (OpenBSD) LIB = -lcompat -lmysqlclient -lm amongh other changes needed for compile on bsd.

Re: [Dbmail] LibMySQL

2002-07-23 Thread Blake
You need to locate mysql/mysql.h on your system, perhaps in /usr/local/mysql/include? Then add a "-I/path/to/mysql/include/dir" to your compile line. James Cook wrote: [EMAIL PROTECTED]:/home/dbmail# make cc -Wall -O2 -D_BSD_SOURCE -D_SVID_SOURCE main.c -o dbmail-smtp list.o debug.o pipe

RE: [Dbmail] LibMySQL

2002-07-23 Thread James Cook
-lcompat doesn't work adding -lm is ok [EMAIL PROTECTED]:/home/dbmail# make cc -Wall -O2 -D_BSD_SOURCE -D_SVID_SOURCE main.c -o dbmail-smtp list.o debug.o pipe.o mime.o mysql/dbmysql.o dbmd5.o md5.o bounce.o forward.o memblock.o mysql/dbauthmysql.o -L/usr/local/mysql/lib -lmysqlclient -lcry