Skip to content
Snippets Groups Projects
Commit a039678c authored by rswindell's avatar rswindell
Browse files

Added DNSBL SPAM Hash checkbox.

parent 9976306a
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 2009 Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
......@@ -157,8 +157,8 @@ void __fastcall TMailCfgDlg::FormShow(TObject *Sender)
BLIgnoreRadioButton->Checked=true;
else
BLTagRadioButton->Checked=true;
BLDebugCheckBox->Checked=MainForm->mail_startup.options
&MAIL_OPT_DNSBL_DEBUG;
DNSBLSpamHashCheckBox->Checked=MainForm->mail_startup.options
&MAIL_OPT_DNSBL_SPAMHASH;
TcpDnsCheckBox->Checked=MainForm->mail_startup.options
&MAIL_OPT_USE_TCP_DNS;
......@@ -320,10 +320,10 @@ void __fastcall TMailCfgDlg::OKBtnClick(TObject *Sender)
MainForm->mail_startup.options|=MAIL_OPT_DNSBL_REFUSE;
else if(BLBadUserRadioButton->Checked==true)
MainForm->mail_startup.options|=MAIL_OPT_DNSBL_BADUSER;
if(BLDebugCheckBox->Checked==true)
MainForm->mail_startup.options|=MAIL_OPT_DNSBL_DEBUG;
if(DNSBLSpamHashCheckBox->Checked==true)
MainForm->mail_startup.options|=MAIL_OPT_DNSBL_SPAMHASH;
else
MainForm->mail_startup.options&=~MAIL_OPT_DNSBL_DEBUG;
MainForm->mail_startup.options&=~MAIL_OPT_DNSBL_SPAMHASH;
if(HostnameCheckBox->Checked==false)
MainForm->mail_startup.options|=MAIL_OPT_NO_HOST_LOOKUP;
......@@ -433,6 +433,8 @@ void __fastcall TMailCfgDlg::DNSBLRadioButtonClick(TObject *Sender)
BLHeaderEdit->Enabled=BLTagRadioButton->Checked;
BLSubjectLabel->Enabled=BLTagRadioButton->Checked;
BLHeaderLabel->Enabled=BLTagRadioButton->Checked;
DNSBLSpamHashCheckBox->Enabled
=(BLTagRadioButton->Checked || BLIgnoreRadioButton->Checked);
}
//---------------------------------------------------------------------------
......
object MailCfgDlg: TMailCfgDlg
Left = 501
Top = 339
Left = 516
Top = 157
BorderStyle = bsDialog
Caption = 'Mail Server Configuration'
ClientHeight = 303
......@@ -53,8 +53,8 @@ object MailCfgDlg: TMailCfgDlg
Top = 4
Width = 342
Height = 245
ActivePage = AdvancedTabSheet
TabIndex = 7
ActivePage = DNSBLTabSheet
TabIndex = 6
TabOrder = 3
object GeneralTabSheet: TTabSheet
Caption = 'General'
......@@ -854,13 +854,13 @@ object MailCfgDlg: TMailCfgDlg
TabOrder = 2
OnClick = DNSBLExemptionsButtonClick
end
object BLDebugCheckBox: TCheckBox
object DNSBLSpamHashCheckBox: TCheckBox
Left = 256
Top = 9
Width = 73
Height = 25
Hint = 'Enable debug logging of DNSBL lookups'
Caption = 'Debug'
Hint = 'Store hashes of messages from blacklisted servers in SPAM base '
Caption = 'Hash'
TabOrder = 3
end
end
......
......@@ -6,7 +6,7 @@
* @format.tab-size 4 (Plain Text/Source Code File Header) *
* @format.use-tabs true (see http://www.synchro.net/ptsc_hdr.html) *
* *
* Copyright 2008 Rob Swindell - http://www.synchro.net/copyright.html *
* Copyright 2009 Rob Swindell - http://www.synchro.net/copyright.html *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
......@@ -119,7 +119,7 @@ __published:
TEdit *MaxRecipientsEdit;
TButton *DNSBLExemptionsButton;
TCheckBox *DebugRXCheckBox;
TCheckBox *BLDebugCheckBox;
TCheckBox *DNSBLSpamHashCheckBox;
TLabel *MaxMsgSizeLabel;
TEdit *MaxMsgSizeEdit;
TCheckBox *AuthViaIpCheckBox;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment