Re: [exim] exim4 calculate cram_md5 for authentication against mysql (smtp_auth)

2008-05-13 Thread Thomas Baumann
I can't believe that it will not be possible. If i read the rfc 2195 there is all I need to catch the challenge which is sent to the client to calculate the answer. Then I can set up a comparison. Can sb. help me - How can I get the challenge in a exim variable ? Thanks for any reply in advance.

[exim] Save a mail and then execute a script

2008-05-13 Thread Julien Balmont
Hi all, thanks for helping me. I'm not an expert in Exim, but I now understand how it works, and i'm trying to do the following: an email arrives, it is saved to a file, then an external PHP script is called. I've already made two routers and two transports (see below). My issue with what I

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread Julien Balmont
Hi Bill, thanks for your wuick answer. I've tested what you've proposed, and it worked. But I meet another issue. The script I'm calling ios supposed to open the saved file and check its content. But at the moment the script is called, the file doesn't seem to be saved yet. Do you have an idea?

[exim] Duplicates aren't eliminated for domains in local_domains

2008-05-13 Thread Konstantin Boyandin
Hello, Yet another problem appeared: there are lines in exim.conf: From: /etc/exim.conf == exim.conf snippet below primary_hostname = example.com domainlist local_domains = @ : example.ru : example.local : localhost : localhost.localdomain # From routers: system_aliases

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread Julien Balmont
BTW, I'm afraid the file is saved only after the script is called. Is there a way to avoid this behaviour? Or to do it simplier? Thanks!! On Tue, May 13, 2008 at 10:01 AM, Julien Balmont [EMAIL PROTECTED] wrote: Hi Bill, thanks for your wuick answer. I've tested what you've proposed, and it

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread Peter Velan
am 13.05.2008 12:09 schrieb Julien Balmont: BTW, I'm afraid the file is saved only after the script is called. Is there a way to avoid this behaviour? My transport looks like ... script_transport: driver = pipe envelope_to_add delivery_date_add user = userxyz group = groupxyz

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread Julien Balmont
Peter, you're my hero :) Thanks !!! On Tue, May 13, 2008 at 1:20 PM, Peter Velan [EMAIL PROTECTED] wrote: am 13.05.2008 12:09 schrieb Julien Balmont: BTW, I'm afraid the file is saved only after the script is called. Is there a way to avoid this behaviour? My transport looks like ...

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread Peter Velan
am 13.05.2008 14:23 schrieb Julien Balmont: Peter, you're my hero :) :-[ I'm curious: Which part of my message was helpfull? Peter PS: Type a response *below* the quoted material you're responding to, so it reads like a conversation. Please don't top-post!

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread Julien Balmont
The part with STDIN. i hadn't found yet how to retrieve the message from EXIM. I had not thought about STDIN, this was helpful. Thanks again On Tue, May 13, 2008 at 2:35 PM, Peter Velan [EMAIL PROTECTED] wrote: am 13.05.2008 14:23 schrieb Julien Balmont: Peter, you're my hero :) :-[ I'm

[exim] exim fails to start after debian lenny upgrade

2008-05-13 Thread Yan Seiner
OK, this is not quite an exim problem, but I hope someone can clue me in... I am running debian lenny. I did an upgrade last night, and now exim won't restart via the /etc/init.d/exim4 script; it fails with selene:/etc/init.d# /etc/init.d/exim4 start Starting MTA:start_daemon -p

Re: [exim] exim fails to start after debian lenny upgrade

2008-05-13 Thread Graeme Fowler
On Tue, 2008-05-13 at 05:57 -0700, Yan Seiner wrote: OK, this is not quite an exim problem, but I hope someone can clue me in... You're quite right, it isn't - you'll be better off asking on the relevant Debian support list: http://lists.alioth.debian.org/mailman/listinfo/pkg-exim4-users

Re: [exim] exim fails to start after debian lenny upgrade

2008-05-13 Thread Yan Seiner
Graeme Fowler wrote: On Tue, 2008-05-13 at 05:57 -0700, Yan Seiner wrote: OK, this is not quite an exim problem, but I hope someone can clue me in... You're quite right, it isn't - you'll be better off asking on the relevant Debian support list:

Re: [exim] exim4 calculate cram_md5 for authentication against mysql (smtp_auth)

2008-05-13 Thread Christopher Meadors
On Tue, 2008-05-13 at 09:54 +0200, Thomas Baumann wrote: I can't believe that it will not be possible. If i read the rfc 2195 there is all I need to catch the challenge which is sent to the client to calculate the answer. Then I can set up a comparison. Can sb. help me - How can I get the

[exim] tls_dont_advertise_hosts

2008-05-13 Thread Luis Bruno
The below seems to be working, but I'd like independent confirmation that it's a good way to exclude a broken host from STARTTLS: tls_advertise_hosts = ${lookup{$sender_host_address}iplsearch{/etc/exim4/no_tls}{}{*}} A lot of the people I talk to have broken rDNS. Could / should I go with

[exim] Real letters to domain literal?

2008-05-13 Thread Lena
From: W B Hacker postmaster@, hostmaster@, abuse@ where '@' may be followed with either: - one of the hosted domain.tld or - one of the server's IP's as a literal Has somebody here ever got a non-spam letter with useful content to [EMAIL PROTECTED] or [EMAIL PROTECTED] ? -- ## List

Re: [exim] Real letters to domain literal?

2008-05-13 Thread Ian Eiloart
--On 13 May 2008 18:49:36 +0300 [EMAIL PROTECTED] wrote: From: W B Hacker postmaster@, hostmaster@, abuse@ where '@' may be followed with either: - one of the hosted domain.tld or - one of the server's IP's as a literal Has somebody here ever got a non-spam letter with useful content

Re: [exim] Real letters to domain literal?

2008-05-13 Thread Ian Eiloart
--On 13 May 2008 18:49:36 +0300 [EMAIL PROTECTED] wrote: From: W B Hacker postmaster@, hostmaster@, abuse@ where '@' may be followed with either: - one of the hosted domain.tld or - one of the server's IP's as a literal Has somebody here ever got a non-spam letter with useful content

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread W B Hacker
Julien Balmont wrote: Hi Bill, thanks for your wuick answer. I've tested what you've proposed, and it worked. But I meet another issue. The script I'm calling ios supposed to open the saved file and check its content. But at the moment the script is called, the file doesn't seem to be

Re: [exim] Save a mail and then execute a script

2008-05-13 Thread W B Hacker
Julien Balmont wrote: BTW, I'm afraid the file is saved only after the script is called. Is there a way to avoid this behaviour? Or to do it simplier? Thanks!! 'Simpler'? Almost certainly. First - what is the *end* result you are trying to accomplish? My bet is that it has already been

Re: [exim] ACL rewrite

2008-05-13 Thread W B Hacker
Searcher wrote: Hi there, how would I go about an ACL SMTP time header rewrite? I need to check RCPT TO, that's not in the headers so can't use regular rewrite/31_exim4-config_rewriting Thanks -src- At RCPT TO you don't yet have any headers Prior to DATA, all an smtp session

Re: [exim] Real letters to domain literal?

2008-05-13 Thread W B Hacker
[EMAIL PROTECTED] wrote: From: W B Hacker postmaster@, hostmaster@, abuse@ where '@' may be followed with either: - one of the hosted domain.tld or - one of the server's IP's as a literal Has somebody here ever got a non-spam letter with useful content to [EMAIL PROTECTED] or [EMAIL

Re: [exim] Duplicates aren't eliminated for domains in local_domains

2008-05-13 Thread Konstantin Boyandin
Hello, 2008/5/13 Konstantin Boyandin [EMAIL PROTECTED]: Yet another problem appeared: there are lines in exim.conf: From: /etc/exim.conf == exim.conf snippet below primary_hostname = example.com domainlist local_domains = @ : example.ru : example.local : localhost :