Re: [Mimedefang] SMTP AUTH

2005-10-27 Thread Kenneth Porter
--On Thursday, October 27, 2005 12:02 PM -0400 Video Game Junkie <[EMAIL PROTECTED]> wrote: You could try using # Alas, kwiki escapes the ampersand internally so it just shows all 5 characters when rendered. ___ Visit http://www.mimedefang.org a

RE: [Mimedefang] SMTP AUTH

2005-10-27 Thread gavin.mcnay
> (Anyone know how to escape the pound sign so the wiki doesn't > see it as its own comment character?) See http://www.kwiki.org/?KwikiFormattingRules # a comment works Gavin PLEASE READ: The information contained in this email is confidential and intended for the named recipient(s) only. If

Re: [Mimedefang] SMTP AUTH

2005-10-27 Thread Video Game Junkie
You could try using # ___ Visit http://www.mimedefang.org and http://www.roaringpenguin.com MIMEDefang mailing list MIMEDefang@lists.roaringpenguin.com http://lists.roaringpenguin.com/mailman/listinfo/mimedefang

Re: [Mimedefang] SMTP AUTH

2005-10-27 Thread Kenneth Porter
--On Thursday, October 27, 2005 9:24 AM -0400 Joseph Brennan <[EMAIL PROTECTED]> wrote: You can identify smtp-auth'd mail by whether you have a value for the variable $SendmailMacros{"auth_type"}. I copied your explanation to the wiki for my own future reference:

Re: [Mimedefang] SMTP AUTH

2005-10-27 Thread Joseph Brennan
--On Wednesday, October 26, 2005 22:42 -0600 Jon Fullmer <[EMAIL PROTECTED]> wrote: John Rudd asked this question two months ago, but I didn?t get to see the final answer. The question is, how can I have SpamAssassin NOT check messages that have been properly authenticated using SMTP AUTH?

Re: [Mimedefang] SMTP AUTH

2005-10-26 Thread Matt Selsky
Check the values of $SendmailMacros{'auth_authen'}, $SendmailMacros{'auth_type'}, and $SendmailMacros{'auth_author'} and then skip the call to spam_assassin_check(). We only check $SendmailMacros{'auth_type'} here. -- Matt The question is, how can I have SpamAssassin NOT check messages that

[Mimedefang] SMTP AUTH

2005-10-26 Thread Jon Fullmer
John Rudd asked this question two months ago, but I didn¹t get to see the final answer. The question is, how can I have SpamAssassin NOT check messages that have been properly authenticated using SMTP AUTH? David Skoll referred him to the mimedefang-filter man page, which does talk about a method

Re: [Mimedefang] SMTP-AUTH

2005-08-27 Thread John Rudd
On Aug 27, 2005, at 6:03 AM, David F. Skoll wrote: John Rudd wrote: However, I have no idea what to put in for "SUCCESSFUL_SMTP_AUTH". Check the mimedefang-filter man page. There's an example; search for "auth" doh! I had seen a reference to %SendmailMacros elsewhere in the file, but it

Re: [Mimedefang] SMTP-AUTH

2005-08-27 Thread David F. Skoll
John Rudd wrote: > However, I have no idea what to put in for "SUCCESSFUL_SMTP_AUTH". Check the mimedefang-filter man page. There's an example; search for "auth" -- David. ___ Visit http://www.mimedefang.org and http://www.roaringpenguin.com MIMEDefan

[Mimedefang] SMTP-AUTH

2005-08-26 Thread John Rudd
I want to skip checking with SpamAssassin if the message came from a relay on my internal network OR if it was submitted with SMTP-AUTH. I was thinking that what I would do is, in filter_end, change: if ($Features{SpamAssassin) { to if ( ($Features{SpamAssassin}) && ( ($RelayAddr !~ /M

Re: [Mimedefang] SMTP AUTH?

2004-08-09 Thread Nels Lindquist
On 7 Aug 2004 at 20:25, Richard A Nelson wrote: > On Sat, 7 Aug 2004, Jon Fullmer wrote: > > > > Is there a way to tell MIMEDefang not to check e-mails from a user that has > > properly authenticated with SMTP AUTH? > > I'm new to mimedefang, so this is just a guess, but it looks like > sendmail

Re: [Mimedefang] SMTP AUTH?

2004-08-09 Thread Lucas Albers
Or you can use this really long version: ala David Skoll originally if I remember correctly. sub authenticated_user(){ # Read command files if (!open(IN, ") { chomp; my $rawcmd = $_; my $cmd = percent_decode($rawcmd); my $arg = substr($cmd, 1); $

Re: [Mimedefang] SMTP AUTH?

2004-08-07 Thread Richard A Nelson
On Sat, 7 Aug 2004, Jon Fullmer wrote: > > Is there a way to tell MIMEDefang not to check e-mails from a user that has > properly authenticated with SMTP AUTH? I'm new to mimedefang, so this is just a guess, but it looks like sendmail will (by default) pass the auth_ macros to the from: callout.

[Mimedefang] SMTP AUTH?

2004-08-07 Thread Jon Fullmer
I¹m using sendmail 8.12.11, MIMEDefang 2.44, SpamAssassin 2.64, and Cyrus SASL 2.1.17 on Linux. Is there a way to tell MIMEDefang not to check e-mails from a user that has properly authenticated with SMTP AUTH? - Jon ___ Visit http://www.mimedefang.o