Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-07-03 Thread Eric's mail
Remove the line:


$SPAMDYKE --config-file $SPAMDYKE_CONF \




Get Outlook for Android







On Tue, Jul 2, 2019 at 9:29 PM -0600, "ChandranManikandan"  
wrote:










Hi Eric,
I have run the below command for disable spamdyke, but still i am seeing 
spamdyke running in my maillog.
is the command is correct? can you help me if i was mistake the command.# cd 
/var/qmail/supervise/smtp
# ln -sf run.dist run
# qmailctl restartmy run script below.#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SPAMDYKE="/usr/bin/spamdyke"
SPAMDYKE_CONF="/etc/spamdyke/spamdyke.conf"
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
REQUIRE_AUTH=0

exec /usr/bin/softlimit -m 2000 \
     /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
     -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
     $SPAMDYKE --config-file $SPAMDYKE_CONF \
     $SMTPD $VCHKPW /bin/true 2>&1

On Tue, Jul 2, 2019 at 10:12 PM Eric's mail  wrote:
Yes, take spamdyke with its flags out of your run script




Get Outlook for Android







On Tue, Jul 2, 2019 at 1:26 AM -0600, "ChandranManikandan"  
wrote:










Hi Eric,
let me setup 1 and update you whether the issue is resolved or not?
And i need to ask you one suggestion.
This SPF failure and TIMEDOUT issue raise with spamdyke package investigated 
from the maillog.
My server is running spamdyke and spamassassin both the packages.
Can i remove or disable spamdyke and run only spamassassin to check this issue?
Could you let me know the steps if need to remove or disable spamdyke and run 
from spamassassin filter.
Maillog
Jul  1 18:12:55 mail spamdyke[12967]: TIMEOUT from: x...@xxx.com to: (unknown) 
origin_ip: xxx.xxx.xxx.xx origin_rdns: xxx.xxx.com auth: (unknown) encryption: 
TLS reason:


On Sat, Jun 29, 2019 at 10:40 PM Eric Broch  wrote:

  

  
  


you can decrease your spf setting, I set mine to '1'.


http://wiki.qmailtoaster.com/index.php/Spf

  0: Never do SPF lookups, don't
create Received-SPF headers
  1: Only create Received-SPF
headers, never block
  2: Use temporary errors when you
have DNS lookup problems
  3: Reject mails when SPF resolves
to fail (deny)
  4: Reject mails when SPF resolves
to softfail or fail
  5: Reject mails when SPF resolves
to neutral, softfail, or fail
  6: Reject mails when SPF does not
resolve to pass






On 6/29/2019 7:51 AM,
  ChandranManikandan wrote:



  
  Hi Eric,



Do i need to do any settings in SPF on our
  server or sender issue.
Still the client send the below error message
  and unable to deliver our server. 
Is it our server issue or client server error?
Please help me?




  
**

     **  THIS
IS A WARNING MESSAGE ONLY  **

     **  YOU DO
NOT NEED TO RESEND YOUR MESSAGE  **

     **

  

  The original
message was received at Thu, 27 Jun 2019 05:39:46 GMT
from aserp2120.xxx.com [127.0.0.1]

  

    -
Transcript of session follows - ... while talking to
our server.com.:

  

  MAIL
  From:
  SIZE=8301

  

  
  <<<
451 SPF lookup failure (#4.3.0)

  .. Deferred:
451 SPF lookup failure (#4.3.0)

  Warning:
message still undelivered after 4 hours Will keep trying
until message is 5 days old
  

  
  

  
On Fri, Jun 28, 2019, 5:54 PM
  ChandranManikandan  wrote:



  Hi Eric, Biju,



thanks for your advise.



My spftbehaviour setting is 3 in my server.
  
  

  
On Thu, Jun 27, 2019 at
  9:34 PM Eric Broch 
  wrote:



  


What's your SPF setting in
  /var/qmail/control/spfbehavior?


On
  6/27/2019 3:14 AM, ChandranManikandan wrote:



  Hi Friends,



One of our sender try to send an email to our
  domain but they got bounced back with this
  message 451 SPF lookup failure 

Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-07-02 Thread ChandranManikandan
Hi Eric,

I have run the below command for disable spamdyke, but still i am seeing
spamdyke running in my maillog.

is the command is correct? can you help me if i was mistake the command.

# cd /var/qmail/supervise/smtp
# ln -sf run.dist run
# qmailctl restart

my run script below.

#!/bin/sh
QMAILDUID=`id -u vpopmail`
NOFILESGID=`id -g vpopmail`
MAXSMTPD=`cat /var/qmail/control/concurrencyincoming`
SPAMDYKE="/usr/bin/spamdyke"
SPAMDYKE_CONF="/etc/spamdyke/spamdyke.conf"
SMTPD="/var/qmail/bin/qmail-smtpd"
TCP_CDB="/etc/tcprules.d/tcp.smtp.cdb"
HOSTNAME=`hostname`
VCHKPW="/home/vpopmail/bin/vchkpw"
REQUIRE_AUTH=0

exec /usr/bin/softlimit -m 2000 \
 /usr/bin/tcpserver -v -R -H -l $HOSTNAME -x $TCP_CDB -c "$MAXSMTPD" \
 -u "$QMAILDUID" -g "$NOFILESGID" 0 smtp \
 $SPAMDYKE --config-file $SPAMDYKE_CONF \
 $SMTPD $VCHKPW /bin/true 2>&1


On Tue, Jul 2, 2019 at 10:12 PM Eric's mail  wrote:

> Yes, take spamdyke with its flags out of your run script
>
> Get Outlook for Android 
>
>
>
>
> On Tue, Jul 2, 2019 at 1:26 AM -0600, "ChandranManikandan" <
> kand...@gmail.com> wrote:
>
> Hi Eric,
>>
>> let me setup 1 and update you whether the issue is resolved or not?
>>
>> And i need to ask you one suggestion.
>>
>> This SPF failure and TIMEDOUT issue raise with spamdyke package
>> investigated from the maillog.
>>
>> My server is running spamdyke and spamassassin both the packages.
>>
>> Can i remove or disable spamdyke and run only spamassassin to check this
>> issue?
>>
>> Could you let me know the steps if need to remove or disable spamdyke and
>> run from spamassassin filter.
>>
>> Maillog
>>
>> Jul  1 18:12:55 mail spamdyke[12967]: TIMEOUT from: x...@xxx.com to:
>> (unknown) origin_ip: xxx.xxx.xxx.xx origin_rdns: xxx.xxx.com auth:
>> (unknown) encryption: TLS reason:
>>
>>
>> On Sat, Jun 29, 2019 at 10:40 PM Eric Broch 
>> wrote:
>>
>>> you can decrease your spf setting, I set mine to '1'.
>>>
>>> http://wiki.qmailtoaster.com/index.php/Spf
>>>
>>>- 0: Never do SPF lookups, don't create Received-SPF headers
>>>- 1: Only create Received-SPF headers, never block
>>>- 2: Use temporary errors when you have DNS lookup problems
>>>- 3: Reject mails when SPF resolves to fail (deny)
>>>- 4: Reject mails when SPF resolves to softfail or fail
>>>- 5: Reject mails when SPF resolves to neutral, softfail, or fail
>>>- 6: Reject mails when SPF does not resolve to pass
>>>
>>>
>>> On 6/29/2019 7:51 AM, ChandranManikandan wrote:
>>>
>>> Hi Eric,
>>>
>>> Do i need to do any settings in SPF on our server or sender issue.
>>> Still the client send the below error message and unable to deliver our
>>> server.
>>> Is it our server issue or client server error?
>>> Please help me?
>>>
>>> **
>>>**  THIS IS A WARNING MESSAGE ONLY  **
>>>**  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
>>>**
>>>
>>> The original message was received at Thu, 27 Jun 2019 05:39:46 GMT from
>>> aserp2120.xxx.com  [127.0.0.1]
>>>
>>>   - Transcript of session follows - ... while talking to our
>>> server.com.:
>>>
>>> MAIL From:> SIZE=8301
>>>
>>> <<< 451 SPF lookup failure (#4.3.0)
>>> >.. Deferred: 451 SPF lookup
>>> failure (#4.3.0)
>>> Warning: message still undelivered after 4 hours Will keep trying until
>>> message is 5 days old
>>>
>>>
>>> On Fri, Jun 28, 2019, 5:54 PM ChandranManikandan 
>>> wrote:
>>>
 Hi Eric, Biju,

 thanks for your advise.

 My spftbehaviour setting is 3 in my server.

 On Thu, Jun 27, 2019 at 9:34 PM Eric Broch 
 wrote:

> What's your SPF setting in /var/qmail/control/spfbehavior?
> On 6/27/2019 3:14 AM, ChandranManikandan wrote:
>
> Hi Friends,
>
> One of our sender try to send an email to our domain but they got
> bounced back with this message 451 SPF lookup failure (#4.3.0).
>
> I am running qmailtoaster in centos 6 32 bit.
> We are able to send email to this sender but unable to receive it and
> they got bounced back email.
> Is the issue is our server or their server.
> how to fix this
> Anyone can help me.
>
>
> --
>
>
> *Regards, Manikandan.C *
>
>

 --


 *Regards, Manikandan.C *

>>>
>>
>> --
>>
>>
>> *Regards,Manikandan.C*
>>
>

-- 


*Regards,Manikandan.C*


Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-07-02 Thread Eric's mail
Yes, take spamdyke with its flags out of your run script




Get Outlook for Android







On Tue, Jul 2, 2019 at 1:26 AM -0600, "ChandranManikandan"  
wrote:










Hi Eric,
let me setup 1 and update you whether the issue is resolved or not?
And i need to ask you one suggestion.
This SPF failure and TIMEDOUT issue raise with spamdyke package investigated 
from the maillog.
My server is running spamdyke and spamassassin both the packages.
Can i remove or disable spamdyke and run only spamassassin to check this issue?
Could you let me know the steps if need to remove or disable spamdyke and run 
from spamassassin filter.
Maillog
Jul  1 18:12:55 mail spamdyke[12967]: TIMEOUT from: x...@xxx.com to: (unknown) 
origin_ip: xxx.xxx.xxx.xx origin_rdns: xxx.xxx.com auth: (unknown) encryption: 
TLS reason:


On Sat, Jun 29, 2019 at 10:40 PM Eric Broch  wrote:

  

  
  


you can decrease your spf setting, I set mine to '1'.


http://wiki.qmailtoaster.com/index.php/Spf

  0: Never do SPF lookups, don't
create Received-SPF headers
  1: Only create Received-SPF
headers, never block
  2: Use temporary errors when you
have DNS lookup problems
  3: Reject mails when SPF resolves
to fail (deny)
  4: Reject mails when SPF resolves
to softfail or fail
  5: Reject mails when SPF resolves
to neutral, softfail, or fail
  6: Reject mails when SPF does not
resolve to pass






On 6/29/2019 7:51 AM,
  ChandranManikandan wrote:



  
  Hi Eric,



Do i need to do any settings in SPF on our
  server or sender issue.
Still the client send the below error message
  and unable to deliver our server. 
Is it our server issue or client server error?
Please help me?




  
**

     **  THIS
IS A WARNING MESSAGE ONLY  **

     **  YOU DO
NOT NEED TO RESEND YOUR MESSAGE  **

     **

  

  The original
message was received at Thu, 27 Jun 2019 05:39:46 GMT
from aserp2120.xxx.com [127.0.0.1]

  

    -
Transcript of session follows - ... while talking to
our server.com.:

  

  MAIL
  From:
  SIZE=8301

  

  
  <<<
451 SPF lookup failure (#4.3.0)

  .. Deferred:
451 SPF lookup failure (#4.3.0)

  Warning:
message still undelivered after 4 hours Will keep trying
until message is 5 days old
  

  
  

  
On Fri, Jun 28, 2019, 5:54 PM
  ChandranManikandan  wrote:



  Hi Eric, Biju,



thanks for your advise.



My spftbehaviour setting is 3 in my server.
  
  

  
On Thu, Jun 27, 2019 at
  9:34 PM Eric Broch 
  wrote:



  


What's your SPF setting in
  /var/qmail/control/spfbehavior?


On
  6/27/2019 3:14 AM, ChandranManikandan wrote:



  Hi Friends,



One of our sender try to send an email to our
  domain but they got bounced back with this
  message 451 SPF lookup failure (#4.3.0).



I am running qmailtoaster in centos 6 32 bit.
We are able to send email to this sender but
  unable to receive it and they got bounced back
  email.
Is the issue is our server or their server.
how to fix this
Anyone can help me.


  

  
  -- 

  

  Regards,

  Manikandan.C



  

  

  

  
  

  

  
  -- 

  

  Regards,

  Manikandan.C



  

  

  



-- 
Regards,
Manikandan.C








Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-07-02 Thread ChandranManikandan
Hi Eric,

let me setup 1 and update you whether the issue is resolved or not?

And i need to ask you one suggestion.

This SPF failure and TIMEDOUT issue raise with spamdyke package
investigated from the maillog.

My server is running spamdyke and spamassassin both the packages.

Can i remove or disable spamdyke and run only spamassassin to check this
issue?

Could you let me know the steps if need to remove or disable spamdyke and
run from spamassassin filter.

Maillog

Jul  1 18:12:55 mail spamdyke[12967]: TIMEOUT from: x...@xxx.com to:
(unknown) origin_ip: xxx.xxx.xxx.xx origin_rdns: xxx.xxx.com auth:
(unknown) encryption: TLS reason:


On Sat, Jun 29, 2019 at 10:40 PM Eric Broch  wrote:

> you can decrease your spf setting, I set mine to '1'.
>
> http://wiki.qmailtoaster.com/index.php/Spf
>
>- 0: Never do SPF lookups, don't create Received-SPF headers
>- 1: Only create Received-SPF headers, never block
>- 2: Use temporary errors when you have DNS lookup problems
>- 3: Reject mails when SPF resolves to fail (deny)
>- 4: Reject mails when SPF resolves to softfail or fail
>- 5: Reject mails when SPF resolves to neutral, softfail, or fail
>- 6: Reject mails when SPF does not resolve to pass
>
>
> On 6/29/2019 7:51 AM, ChandranManikandan wrote:
>
> Hi Eric,
>
> Do i need to do any settings in SPF on our server or sender issue.
> Still the client send the below error message and unable to deliver our
> server.
> Is it our server issue or client server error?
> Please help me?
>
> **
>**  THIS IS A WARNING MESSAGE ONLY  **
>**  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
>**
>
> The original message was received at Thu, 27 Jun 2019 05:39:46 GMT from
> aserp2120.xxx.com  [127.0.0.1]
>
>   - Transcript of session follows - ... while talking to our
> server.com.:
>
> MAIL From:> SIZE=8301
>
> <<< 451 SPF lookup failure (#4.3.0)
> >.. Deferred: 451 SPF lookup
> failure (#4.3.0)
> Warning: message still undelivered after 4 hours Will keep trying until
> message is 5 days old
>
>
> On Fri, Jun 28, 2019, 5:54 PM ChandranManikandan 
> wrote:
>
>> Hi Eric, Biju,
>>
>> thanks for your advise.
>>
>> My spftbehaviour setting is 3 in my server.
>>
>> On Thu, Jun 27, 2019 at 9:34 PM Eric Broch 
>> wrote:
>>
>>> What's your SPF setting in /var/qmail/control/spfbehavior?
>>> On 6/27/2019 3:14 AM, ChandranManikandan wrote:
>>>
>>> Hi Friends,
>>>
>>> One of our sender try to send an email to our domain but they got
>>> bounced back with this message 451 SPF lookup failure (#4.3.0).
>>>
>>> I am running qmailtoaster in centos 6 32 bit.
>>> We are able to send email to this sender but unable to receive it and
>>> they got bounced back email.
>>> Is the issue is our server or their server.
>>> how to fix this
>>> Anyone can help me.
>>>
>>>
>>> --
>>>
>>>
>>> *Regards, Manikandan.C *
>>>
>>>
>>
>> --
>>
>>
>> *Regards, Manikandan.C *
>>
>

-- 


*Regards,Manikandan.C*


Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-06-29 Thread Eric Broch

you can decrease your spf setting, I set mine to '1'.

http://wiki.qmailtoaster.com/index.php/Spf

 * 0: Never do SPF lookups, don't create Received-SPF headers
 * 1: Only create Received-SPF headers, never block
 * 2: Use temporary errors when you have DNS lookup problems
 * 3: Reject mails when SPF resolves to fail (deny)
 * 4: Reject mails when SPF resolves to softfail or fail
 * 5: Reject mails when SPF resolves to neutral, softfail, or fail
 * 6: Reject mails when SPF does not resolve to pass


On 6/29/2019 7:51 AM, ChandranManikandan wrote:

Hi Eric,

Do i need to do any settings in SPF on our server or sender issue.
Still the client send the below error message and unable to deliver 
our server.

Is it our server issue or client server error?
Please help me?

**
   **  THIS IS A WARNING MESSAGE ONLY  **
   **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
   **

The original message was received at Thu, 27 Jun 2019 05:39:46 GMT
from aserp2120.xxx.com  [127.0.0.1]

  - Transcript of session follows - ... while talking to
our server.com .:

MAIL From:mailto:stephen.pil...@oracle.com>> SIZE=8301

<<< 451 SPF lookup failure (#4.3.0)
mailto:h...@panasiagroup.net>>.. Deferred:
451 SPF lookup failure (#4.3.0)
Warning: message still undelivered after 4 hours Will keep trying
until message is 5 days old


On Fri, Jun 28, 2019, 5:54 PM ChandranManikandan > wrote:


Hi Eric, Biju,

thanks for your advise.

My spftbehaviour setting is 3 in my server.

On Thu, Jun 27, 2019 at 9:34 PM Eric Broch
mailto:ebr...@whitehorsetc.com>> wrote:

What's your SPF setting in /var/qmail/control/spfbehavior?

On 6/27/2019 3:14 AM, ChandranManikandan wrote:

Hi Friends,

One of our sender try to send an email to our domain but they
got bounced back with this message 451 SPF lookup failure
(#4.3.0).

I am running qmailtoaster in centos 6 32 bit.
We are able to send email to this sender but unable to
receive it and they got bounced back email.
Is the issue is our server or their server.
how to fix this
Anyone can help me.


-- 
*/Regards,

Manikandan.C
/*




-- 
*/Regards,

Manikandan.C
/*



Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-06-29 Thread ChandranManikandan
Hi Eric,

Do i need to do any settings in SPF on our server or sender issue.
Still the client send the below error message and unable to deliver our
server.
Is it our server issue or client server error?
Please help me?

**
   **  THIS IS A WARNING MESSAGE ONLY  **
   **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
   **

The original message was received at Thu, 27 Jun 2019 05:39:46 GMT from
aserp2120.xxx.com  [127.0.0.1]

  - Transcript of session follows - ... while talking to our
server.com.:

MAIL From:> SIZE=8301

<<< 451 SPF lookup failure (#4.3.0)
>.. Deferred: 451 SPF lookup
failure (#4.3.0)
Warning: message still undelivered after 4 hours Will keep trying until
message is 5 days old


On Fri, Jun 28, 2019, 5:54 PM ChandranManikandan  wrote:

> Hi Eric, Biju,
>
> thanks for your advise.
>
> My spftbehaviour setting is 3 in my server.
>
> On Thu, Jun 27, 2019 at 9:34 PM Eric Broch 
> wrote:
>
>> What's your SPF setting in /var/qmail/control/spfbehavior?
>> On 6/27/2019 3:14 AM, ChandranManikandan wrote:
>>
>> Hi Friends,
>>
>> One of our sender try to send an email to our domain but they got bounced
>> back with this message 451 SPF lookup failure (#4.3.0).
>>
>> I am running qmailtoaster in centos 6 32 bit.
>> We are able to send email to this sender but unable to receive it and
>> they got bounced back email.
>> Is the issue is our server or their server.
>> how to fix this
>> Anyone can help me.
>>
>>
>> --
>>
>>
>> *Regards, Manikandan.C *
>>
>>
>
> --
>
>
> *Regards,Manikandan.C*
>


Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-06-28 Thread ChandranManikandan
Hi Eric, Biju,

thanks for your advise.

My spftbehaviour setting is 3 in my server.

On Thu, Jun 27, 2019 at 9:34 PM Eric Broch  wrote:

> What's your SPF setting in /var/qmail/control/spfbehavior?
> On 6/27/2019 3:14 AM, ChandranManikandan wrote:
>
> Hi Friends,
>
> One of our sender try to send an email to our domain but they got bounced
> back with this message 451 SPF lookup failure (#4.3.0).
>
> I am running qmailtoaster in centos 6 32 bit.
> We are able to send email to this sender but unable to receive it and they
> got bounced back email.
> Is the issue is our server or their server.
> how to fix this
> Anyone can help me.
>
>
> --
>
>
> *Regards, Manikandan.C *
>
>

-- 


*Regards,Manikandan.C*


Re: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-06-27 Thread Eric Broch

What's your SPF setting in /var/qmail/control/spfbehavior?

On 6/27/2019 3:14 AM, ChandranManikandan wrote:

Hi Friends,

One of our sender try to send an email to our domain but they got 
bounced back with this message 451 SPF lookup failure (#4.3.0).


I am running qmailtoaster in centos 6 32 bit.
We are able to send email to this sender but unable to receive it and 
they got bounced back email.

Is the issue is our server or their server.
how to fix this
Anyone can help me.


--
*/Regards,
Manikandan.C
/*


RE: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

2019-06-27 Thread Biju Jose | WHITES Systems
They have to update their SPF records in their DNS Server, which is the 
solution for this problem. 

Optionally, from our side, we can whitelist the sender in 
/etc/spamdyke/whitelist_senders

 

From: ChandranManikandan [mailto:kand...@gmail.com] 
Sent: 27 June 2019 14:45
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] 451 SPF lookup failure (#4.3.0)

 

Hi Friends,

 

One of our sender try to send an email to our domain but they got bounced back 
with this message 451 SPF lookup failure (#4.3.0).

 

I am running qmailtoaster in centos 6 32 bit.

We are able to send email to this sender but unable to receive it and they got 
bounced back email.

Is the issue is our server or their server.

how to fix this

Anyone can help me.




 

-- 

Regards,
Manikandan.C