diff options
author | Gluzskiy Alexandr <sss123next@gmail.com> | 2010-02-15 06:41:36 +0300 |
---|---|---|
committer | Gluzskiy Alexandr <sss123next@gmail.com> | 2010-02-15 06:41:36 +0300 |
commit | 02b8498fdb1d06aa8b6f136e2914000d05f29dc2 (patch) | |
tree | 3ecb953f29318f5ba9e12fa3e2b6df1fc74e4881 /init.cpp | |
parent | a5f8c514a5d7da4cd7049d2439182f51d7c1c195 (diff) |
added option for block auth requests with URL (may not work)
Diffstat (limited to 'init.cpp')
-rw-r--r-- | init.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -17,6 +17,7 @@ BOOL gbDelExcluded = 0; BOOL gbDosServiceIntegration = 0;
BOOL gbCaseInsensitive = 0;
BOOL gbInvisDisable = 0;
+BOOL gbIgnoreURL = 1;
//BOOL gbDelNotInList = 0;
tstring gbSpammersGroup = _T("Spammers");
tstring gbQuestion;
@@ -142,6 +143,7 @@ void InitVars() gbDelExcluded = DBGetContactSettingByte(NULL, pluginName, "DelExcluded", 0);
gbCaseInsensitive = DBGetContactSettingByte(NULL, pluginName, "CaseInsensitive", 0);
gbInvisDisable = DBGetContactSettingByte(NULL, pluginName, "DisableInInvis", 0);
+ gbIgnoreURL = DBGetContactSettingByte(NULL, pluginName, "IgnoreURL", 0);
// gbDelNotInList = DBGetContactSettingByte(NULL, pluginName, "DelNotInList", 0);
}
|