RE: RESOLVED RE: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-22 Thread wiskbroom
From: mich...@orlitzky.com To: postfix-users@postfix.org Subject: Re: RESOLVED RE: Need To Reject Inbound From Addresses with My Own Domain/s wiskbr...@hotmail.com wrote: My problem was that my main.cf, although stating the aliases map with: alias_database = dbm:/etc/postfix/aliases

RESOLVED RE: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-20 Thread wiskbroom
From: Victor.Duchovni@ On Thu, May 14, 2009 at 12:42:01PM -0500, Noel Jones wrote: wiskbr...@hotmail.com wrote: Here are the contents of my /etc/postfix/blocked_senders file: operator#...@somephishingbanksite\.com REJECT The above line is the wrong syntax and will never match anything.

RE: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-18 Thread wiskbroom
From: Victor.Duchovni@ On Thu, May 14, 2009 at 12:42:01PM -0500, Noel Jones wrote: wiskbr...@hotmail.com wrote: Here are the contents of my /etc/postfix/blocked_senders file: operator#...@somephishingbanksite\.com REJECT The above line is the wrong syntax and will never match anything.

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-15 Thread LuKreme
On 14-May-2009, at 20:19, Noel Jones wrote: You're right, that's a pcre construct and not universally supported by regexp. A more portable expression would be: /operator#[0-...@somephishingbanksite\.com$/ REJECT phishing Now, just to double check, if postfix is compiled with PCRE then it

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-15 Thread Barney Desmond
2009/5/15 LuKreme krem...@kreme.com: Now, just to double check, if postfix is compiled with PCRE then it doesn't matter if the table is named regex or pcre, it uses and understands pcre, right? A PCRE regex in a regexp table would still be incorrect. I've not tested this, but I assume you'd

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-15 Thread Ralf Hildebrandt
* Barney Desmond barneydesm...@gmail.com: 2009/5/15 LuKreme krem...@kreme.com: Now, just to double check, if postfix is compiled with PCRE then it doesn't matter if the table is named regex or pcre, it uses and understands pcre, right? A PCRE regex in a regexp table would still be

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-15 Thread Victor Duchovni
On Fri, May 15, 2009 at 12:11:00AM -0600, LuKreme wrote: On 14-May-2009, at 20:19, Noel Jones wrote: You're right, that's a pcre construct and not universally supported by regexp. A more portable expression would be: /operator#[0-...@somephishingbanksite\.com$/ REJECT phishing Now, just

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-15 Thread Noel Jones
LuKreme wrote: On 14-May-2009, at 20:19, Noel Jones wrote: You're right, that's a pcre construct and not universally supported by regexp. A more portable expression would be: /operator#[0-...@somephishingbanksite\.com$/ REJECT phishing Now, just to double check, if postfix is compiled

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-14 Thread Noel Jones
wiskbr...@hotmail.com wrote: Recently I've been getting a ton of email for a new domain we've registered and have begun receiving email for. Our users in this new domain are either 1. receiving email with a From address identical to their own, or 2. receiving email with a From address of one

RE: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-14 Thread wiskbroom
Here are the contents of my /etc/postfix/blocked_senders file: operator#...@somephishingbanksite\.com REJECT The above line is the wrong syntax and will never match anything. Wildcards are not allowed in dbm or other indexed files, and quotes should never be used. I am almost certain

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-14 Thread Noel Jones
wiskbr...@hotmail.com wrote: Here are the contents of my /etc/postfix/blocked_senders file: operator#...@somephishingbanksite\.com REJECT The above line is the wrong syntax and will never match anything. Wildcards are not allowed in dbm or other indexed files, and quotes should never be

Re: Need To Reject Inbound From Addresses with My Own Domain/s

2009-05-14 Thread Noel Jones
Victor Duchovni wrote: On Thu, May 14, 2009 at 12:42:01PM -0500, Noel Jones wrote: wiskbr...@hotmail.com wrote: Here are the contents of my /etc/postfix/blocked_senders file: operator#...@somephishingbanksite\.com REJECT The above line is the wrong syntax and will never match anything.