all,
Has anybody tried qmail to procmail to dbmail-imap to dbmail and made
it work?
Robert
[EMAIL PROTECTED] wrote:
Send Dbmail mailing list submissions to
dbmail@dbmail.org
To subscribe or unsubscribe via the World Wide Web, visit
https://mailman.fastxs.nl/mailman/listinfo/dbmail
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Dbmail digest..."
Today's Topics:
1. Newbie Q. on Mr. Lai's m4 (Reg Blank)
2. Re: Newbie Q. on Mr. Lai's m4 (Jeff Brenton)
3. Changelog.txt not found on dbmail.org (Aaron Stone)
4. v1.1 configure failed on FreeBSD 4.x (Reg Blank)
5. DBMail 1.1 fixes. (Bret Baptist)
6. FIXED: Re: [Dbmail] v1.1 configure failed on FreeBSD 4.x (Reg Blank)
7. Re: DBMail 1.1 fixes. (Roel Rozendaal - IC&S)
8. MD5 salted hashes in Dbmail (System passwords can be used) (Boyan Alexiev)
9. Auto-response (Boyan Alexiev)
10. Re: Auto-response (Jeff Brenton)
11. dbmail-smtp Death by signal 11 (Boyan Alexiev)
12. Re[2]: [Dbmail] Auto-response (Boyan Alexiev)
13. Re[3]: [Dbmail] Auto-response (Jeff Brenton)
14. Re[4]: [Dbmail] Auto-response (Boyan Alexiev)
15. Messages using squirrelmail (Jacques-Beaudoin)
--__--__--
Message: 1
Date: Fri, 21 Feb 2003 23:18:17 +0900
From: Reg Blank <[EMAIL PROTECTED]>
To: dbmail@dbmail.org
Subject: [Dbmail] Newbie Q. on Mr. Lai's m4
Reply-To: dbmail@dbmail.org
Hello!
Before implementing Mr. Lai's dbmail.m4, I have a question.
Mr. Lai said:
> - insert virtual user "foo:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>" into
aliases file.
> - add dbmail user by "dbmail-adduser a foo passwd 0 0 [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]>".
Does that mean for every user I added, I must add him/her to
/etc/aliases AND do the dbmail-adduser... ? For example, if I were to
add 10 users, I would have to do the above 10 times? Morever, what
advantage(s) would the above have as compared to the following steps
without using the dbmail.m4:
1) dbmail-adduser a foo passwd 0 0 [EMAIL PROTECTED]
2) add 'foo: "|/usr/local/sbin/dbmail-smtp -d [EMAIL PROTECTED]'
Apologies in advance for these newbie question(s).
Many Thanks.
R.
eddy dbmail@dbmail.org <mailto:dbmail%40dbmail.org>
Sat, 13 Apr 2002 19:04:23 +0800 (HKT)
* Previous message: [Dbmail] dbmail and sendmail <000346.html>
* Next message: [Dbmail] DB-Mail installation for an ISP (40K
messages a week) <000341.html>
* Messages sorted by: [ date ] <date.html#350> [ thread ]
<thread.html#350> [ subject ] <subject.html#350> [ author ]
<author.html#350>
------------------------------------------------------------------------
The basic concept was come from FAX installation in sendmail. I create
a function call DBM. And then redirect the incoming messages to call
dbmail-smtp.
To config the dbmail with sendmail :
- copy my 'dbmail.m4' from http://dbmail.5687.net/dbmail.m4 file into
<cf home>/mailer/ directory.
- insert the follow line into <cf home>/m4/proto.m4 :
**** Please notice the space should be tab ******
Quoted
ifdef(`_MAILER_dbmail_',
`R$+ < @ $* DBM. > $#DBM $@ $j $: $1 < @ ${DOM} >',
`dnl')
Unquoted
or
get my proto.m4 from http://dbmail.5687.net/proto.m4. It was
sendmail-8.12.2 version.
- insert a line "MAILER(dbmail)dnl" into sendmail.mc file.
- rebuild sendmail.cf i.e.
m4 sendmail.mc > sendmail.cf
- insert virtual user "foo:[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>" into
aliases file.
- add dbmail user by "dbmail-adduser a foo passwd 0 0 [EMAIL PROTECTED] <mailto:[EMAIL
PROTECTED]>".
On Sat, 13 Apr 2002, mihnea wrote:
Hi,
does anybody have any documentation for integrating dbmail with
sendmail? or a dbmail.m5 maybe?
regards,
Mihnea
_______________________________________________
Dbmail mailing list
Dbmail@dbmail.org <mailto:Dbmail@dbmail.org>
https://mailman.fastxs.nl/mailman/listinfo/dbmail
--
Eddy Lai
http://www.5687.net/
------------------------------------------------------------------------
* Previous message: [Dbmail] dbmail and sendmail <000346.html>
* Next message: [Dbmail] DB-Mail installation for an ISP (40K
messages a week) <000341.html>
* Messages sorted by: [ date ] <date.html#350> [ thread ]
<thread.html#350> [ subject ] <subject.html#350> [ author ]
<author.html#350>
--__--__--
Message: 2
Date: Fri, 21 Feb 2003 09:02:58 -0600
From: Jeff Brenton <[EMAIL PROTECTED]>
Organization: Engineered Software Products Inc.
To: Reg Blank <dbmail@dbmail.org>
Subject: Re: [Dbmail] Newbie Q. on Mr. Lai's m4
Reply-To: dbmail@dbmail.org
Hello Reg,
RB> Does that mean for every user I added, I must add him/her to
RB> /etc/aliases AND do the dbmail-adduser... ?
A lot depends upon whether or not you've got sendmail talking to
SQL... Patches exist to allow sendmail to look in different databases
for its aliases.
IF your sendmail can use SQL, you could have it look up aliases with
the dbmail.aliases table directly. If not, it might be better to write
a small Perl or other script to periodically query the SQL database,
build a new aliases file, and run newaliases on it.