Just to clarify...
My primary hmailserver (Windows 2003 R2 Server) is also my MySQL database server and my secondary hmailserver (Windows 2019 Essential) is my Backup-MX. Both servers currently connect to the MySQL server instance on my primary server. So, two mailservers and one database server.
Search found 4029 matches
- 2021-01-18 17:48
- Forum: General discussions
- Topic: Multiple Instances on one DB Server
- Replies: 6
- Views: 37
- 2021-01-18 17:08
- Forum: General discussions
- Topic: Multiple Instances on one DB Server
- Replies: 6
- Views: 37
Re: Multiple Instances on one DB Server
Hi there, I have a question where I couldn't find an answer yet. Currently I'm running an instance of hMailserver on the embedded CE database. Now as I get quite a bit of emails a day, I would like to move to a MySQL DB (at amazon RDS) where I expect a better performance. For a single instance this...
- 2021-01-15 14:43
- Forum: Off-topic discussions
- Topic: Re: Farts and the stink they cause
- Replies: 61
- Views: 14610
Re: Farts and the stink they cause
I'll be interested to know the definition of 'Again'. What exactly is he trying to go back to? (When was America so *great* and why was it?) Before the US and A has glorious welfare state, we attracted the best and brightest and most productive people. And yes, they were European because a) Europea...
- 2021-01-12 20:19
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
Probably add something like this to your code...
Code: Select all
If Not InStr(oMessage.Subject, "[list]") Then oMessage.Subject = "[list] " & oMessage.Subject
- 2021-01-12 19:49
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
Well... :mrgreen: File: ReloadScript.vbs Option Explicit ' ' ReloadScript.vbs Version 0.01 PRE-Alpha ' Private Const ADMIN = "Administrator" Private Const PASSWORD = "SUPER SECRET PASSWORD" Dim oApp : Set oApp = CreateObject("hMailServer.Application", "192.168.0.5") Call oApp.Authenticate(ADMIN, PAS...
- 2021-01-12 18:46
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
Variable is undefined error usually occurs then the script code references a variable for the first time and explicit variable declaration is enabled. In VBScript this is done with the option explicit statement. I don't have that statement in my script code, but it may be activated elsewhere. If yo...
- 2021-01-12 17:38
- Forum: Scripting
- Topic: hMailServer Offsite Backup
- Replies: 56
- Views: 6601
Re: hMailServer Offsite Backup
Not to worry, it "just one of those things with Windows". The problem with path names containing one or more spaces has existed since Windows 95. https://www.howtogeek.com/694949/how-to-escape-spaces-in-file-paths-on-the-windows-command-line/ Thanks for the pointer, if it is not a problem I need no...
- 2021-01-12 17:16
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
Hi Mike So I tried changing the password. You were right in that yes it contained an @ symbol. Still didn't make much difference. I thought what I would try to do is disable the 2nd rule...the one that looks for the "x-member-of-list" header. That way that rule couldn't kick it out. So with only th...
- 2021-01-12 14:21
- Forum: Scripting
- Topic: hMailServer Offsite Backup
- Replies: 56
- Views: 6601
Re: hMailServer Offsite Backup
Maybe the help text helps: C:\Program Files (x86)\hMailServer\Bin>7za C:\Program Files (x86)\hMailServer\Bin> (There is a " -v{Size}[b|k|m|g]: Create volumes " option) Wikipedia says "standalone executable 7za.exe, containing built-in modules, but with compression/decompression support limited to 7...
- 2021-01-11 16:07
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
I think I may have another clue - it looks like it's not even logging on to the account. All accounts will show "last login" and a time....and it doesn't show anything happening. So there is something there that's not quite right. Hope that helps I would assume "logging on" and "authenticating" are...
- 2021-01-11 01:04
- Forum: General discussions
- Topic: Migrate to new Internet provider. TIPS?
- Replies: 6
- Views: 217
Re: Migrate to new Internet provider. TIPS?
Primary MX on 4G, Internet surf/streaming and secondary MX on fiber - Yes there are issues with multiple default gateways on Windows so I have two hMailServers - a mailserver and a backup-mx/test server. However that also mean I can send out on either ISP :mrgreen: I am curious as to how you keep y...
- 2021-01-10 23:23
- Forum: General discussions
- Topic: Migrate to new Internet provider. TIPS?
- Replies: 6
- Views: 217
Re: Migrate to new Internet provider. TIPS?
Hello All, I have been running hmailserver for a number of years on a dsl line with a static IP behind pfsense. I do have my own domain name associated with that dsl static IP address. The name is under my own control and has nothing to do with the IP provider. Because of speed limitations I am thi...
- 2021-01-10 17:10
- Forum: User-submitted tutorials
- Topic: HOW TO: Install Spamassassin For Windows and SPAMD service
- Replies: 39
- Views: 106325
Re: HOW TO: Install Spamassassin For Windows and SPAMD service
This should be sufficient.
Code: Select all
sa-update.exe -v --nogpg --channelfile UpdateChannels.txt
net stop spamassassin && net start spamassassin
- 2021-01-10 02:52
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
As I posted earlier... Some 11 years ago AndyP designed ListServ functionality for hMailServer. http://www.hmailserver.com/forum/viewtopic.php?f=20&t=15301&start=0 In 2013 Brother Gabriel-Marie, Society of Saint Prius X, made improvements to the script. Unfortunately we do not have the latest versio...
- 2021-01-09 13:13
- Forum: Scripting
- Topic: hMailServer Offsite Backup
- Replies: 56
- Views: 6601
Re: hMailServer Offsite Backup
Thank you Palinka and Soren for pointers. Here is what I found. For Uploading to NAS by NOT USING ROBOCOPY https://github.com/marcosfreccia/Powershell-Scripts/blob/master/SyncFileSystem.ps1 $SourceFolder = "D:\Source" $TargetFolder = "D:\Target\" $SourceFolderItems = Get-ChildItem -Recurse -Path D:...
- 2021-01-09 13:01
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
Thanks Mike. That didn't really do anything or stop the looping. It worked as far as just changing over to announce mode. In announce mode, the only one that can post is the proxy. Then it goes out to all the members. We are so close. I really wish there was some way to maintain a text file or some...
- 2021-01-09 03:14
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
1. Change the MAIL FROM envelope sender from the post originator to the list address. The front-end account may be able to do that. You should create an account on the list's domain with the name you want to use as the list name. Configure this account Forwarding tab, Enabled , Forward to the distr...
- 2021-01-08 15:52
- Forum: Scripting
- Topic: hMailServer Offsite Backup
- Replies: 56
- Views: 6601
Re: hMailServer Offsite Backup
Looks like you can use copy-item with unc paths. https://duckduckgo.com/?q=powershell+copy-item+network+share I never tried it. But then, i never tried anything i never did before i did them. :D If RansomeWare is an issue then you cannot be authenticated on the target server permanently as this is ...
- 2021-01-08 06:05
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
If RewriteEnvelopeFromWhenForwarding=1 and an account is created called "mylist@domain.tld" and this account is set to forward the message to "list1@domain.tld" then the MAIL FROM would be rewritten to "mylist@domain.tld"... Hmmm...you reminded me I suggested something similar to solve a related di...
- 2021-01-08 06:03
- Forum: User-submitted tutorials
- Topic: Giving back to the team and community: log file database upload
- Replies: 36
- Views: 3095
Re: Giving back to the team and community: log file database upload
hMailServerLogImporter1004.7z Here is an almost complete re-write. What has changed: * The bug with sharing violation reported by gotspatel is fixed. + PostgreSQL implemented + Now users can create their own reports. 3x sample JSON definitions can be found under .\Reports\ Any JSON file placed ther...
- 2021-01-08 05:38
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
From what I can see, hMailServer is using the post originator as the MAIL FROM envelope sender no matter what RewriteEnvelopeFromWhenForwarding is set to, and Gmail is looking up the SPF record based on the domain of the envelope sender. It appear from the source that RewriteEnvelopeFromWhenForward...
- 2021-01-07 18:39
- Forum: General discussions
- Topic: Gmail "be careful with this message"
- Replies: 117
- Views: 4035
Re: Gmail "be careful with this message"
Okay got it figured out. Here's how I broke it: A couple of days ago, I changed the ports in order to try to quit being hammered by spammers. So I had changed the mail SMTP from port 25 to port 256. So, in order to get things working, I re-added port 25 for SMTP protocol. I would rather not do that...
- 2021-01-07 18:05
- Forum: Off-topic discussions
- Topic: Floyd
- Replies: 38
- Views: 11338
Re: Floyd
https://www.stripersonline.com/surftalk/uploads/monthly_2020_12/RubiconCrossingAhead.jpg.6193f0c47882498001881b3fee55ec34.jpg That image is very telling about the atitude of american sites... IT DON'T WORK IN EU! HINT: GDPR! They don't care about privacy and you are no longer a person but a comodit...
- 2021-01-07 15:33
- Forum: Off-topic discussions
- Topic: Corona Virus
- Replies: 254
- Views: 76769
Re: Corona Virus
here is no outgoing president. There is a current president awaiting re-inauguration and a fake-news-pretending-to-be pipe dream of a president. But no outgoing president. Not in 2020. No, but there is in 2021. Or is this fake too? Patience is a virtue, grasshopper. https://www.politico.com/news/20...
- 2021-01-06 17:19
- Forum: Development & alpha discussions
- Topic: Hmailserver from github does not build from source
- Replies: 7
- Views: 732
Re: Hmailserver from github does not build from source
"in DKIM.cpp, std::vector is missing #include <vector>" does not look like an error message from Visual Studio 2019. This is a message from me. Vs throws unrecognized symbol or namespace, or something to that effect, from memory. I have no idea what branch I tried to build, or even that there are m...
- 2021-01-06 17:00
- Forum: General discussions
- Topic: SMTP & greylisting
- Replies: 15
- Views: 435
Re: SMTP & greylisting
I'm obviously very, very poor at expressing myself :-( I didn't ever say I'd changed the retry number! In my request for help I wrote "My settings are Number of retries 4 and Minutes between retries 10. The log shows 6 immediate attempts to send the mail, all with the same result, within a 10 secon...
- 2021-01-06 16:52
- Forum: General discussions
- Topic: SMTP & greylisting
- Replies: 15
- Views: 435
Re: SMTP & greylisting
Do you have any special settings in your hmailserver.ini like ...
QuickRetries, QuickRetriesMinutes or QueueRandomnessMinutes ??
QuickRetries, QuickRetriesMinutes or QueueRandomnessMinutes ??
- 2021-01-06 11:46
- Forum: General discussions
- Topic: SMTP & greylisting
- Replies: 15
- Views: 435
Re: SMTP & greylisting
did you read what it says here?
https://community.mimecast.com/s/articl ... 605754#451
either up the number of retries or extend the wait to 1 minute.
https://community.mimecast.com/s/articl ... 605754#451
either up the number of retries or extend the wait to 1 minute.
- 2021-01-06 00:35
- Forum: Off-topic discussions
- Topic: Corona Virus
- Replies: 254
- Views: 76769
Re: Corona Virus
You got that right. And the Stupid Democrats in Congress will probably want to run out the clock to 1-20-21 giving this 'CRIMINAL' more opportunity to do damage to the Nation. I have badgered my Representative to support an immediate Impeachment now even if it won't result in Removal from Office bu...
- 2021-01-05 20:52
- Forum: Scripting
- Topic: Metadata by Message-ID
- Replies: 9
- Views: 773
Re: Metadata by Message-ID
I only need ephemeral storage for those messages that don't get relayed by SendGrid on the first attempt due to transient failure. All other messages will be cleared immediately via either a delivered notification, or a bounce notification. Those that are simply delayed are the messages I want to n...
- 2021-01-05 20:02
- Forum: Scripting
- Topic: Metadata by Message-ID
- Replies: 9
- Views: 773
Re: Metadata by Message-ID
The metadata table only hold emails stored in IMAP folders so if you don't store sent mail it won't be there. I suppose this depends on the userbase. Do real people use POP3 anymore? But I definitely get your point. No you don't. If you use SENDGRID for outbound messages then you are sending bulk. ...
- 2021-01-05 19:57
- Forum: Off-topic discussions
- Topic: Corona Virus
- Replies: 254
- Views: 76769
Re: Corona Virus
When the Democrats drew the District boundaries the Districts tended to include Liberals and minorities with Conservatives which did tend to be Democratic leaning Districts. I did leave out the next sentence which would have been that the Districts drawn by Republicans tended to be all Conservative...
- 2021-01-05 14:46
- Forum: Scripting
- Topic: Metadata by Message-ID
- Replies: 9
- Views: 773
Re: Metadata by Message-ID
I get a callback POST from SendGrid for delivery events. The data provided by SendGrid is incomplete notify the message originator, so I need a way to look up the message in hMailServer metadata. I do get the Message-ID of the message in the POST. I don't see a method in the API to lookup a message...
- 2021-01-05 00:05
- Forum: Scripting
- Topic: Metadata by Message-ID
- Replies: 9
- Views: 773
Re: Metadata by Message-ID
I get a callback POST from SendGrid for delivery events. The data provided by SendGrid is incomplete notify the message originator, so I need a way to look up the message in hMailServer metadata. I do get the Message-ID of the message in the POST. I don't see a method in the API to lookup a message...
- 2021-01-04 00:22
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
mattg, I use Let's Encrypt Certificates but only use the 'cert.pem' and 'privkey.pem' files in hMailServer. I do not use the 'chain.pem' file because for some reason the expiration date in the 'chain.pem' file is always expired. However, while I don't have any Thunderbird Clients, I do use an Outlo...
- 2021-01-04 00:12
- Forum: General discussions
- Topic: problem with ssl
- Replies: 32
- Views: 2172
Re: problem with ssl
On my server, I use MTA-STS, I require TLSv1.2 or TLSv1.3 with strong ciphers (I do allow NOT encrypted as fall back). I autoban high score spammers and hackers. More reports? I already get almost daily DMARC reports from Google and others and now even more reports with MTA-TST ?? :roll: I was plan...
- 2021-01-03 23:59
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
... Removed selection from "Verify remote server...." from hMailAdmin -> Settings -> Advanced -> SSL/TLS 'Verify' isn't actually used much. It is used on SMTP routes, and for upstream 'External Account POP3' connections and not much else https://www.hmailserver.com/forum/viewtopic.php?f=10&t=29078&...
- 2021-01-03 21:35
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
I am using version 5.6.8-B2501 and I believe I get the same type of EHLO followed by a HELO from, in this case, a site trying to SPAM me. I see something like this all the time. Not sure but I may have seen this also on 5.6.7-B2425. See my Log Entries: "TCPIP" 12384 "2021-01-03 05:58:07.989" "TCP -...
- 2021-01-03 19:32
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
- 2021-01-03 19:26
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
So the backup couldn't verify the primary certificate so defaulted to HELO? That appear to be the case. I use standard certificates from Let's Encrypt, one for each server and one for my webserver (no wildcard). I normally use the "fullchain.cer" but hMailServer debug logging revealed the certifica...
- 2021-01-03 18:53
- Forum: User contributed hMailServer 5 scripts
- Topic: SpamAssassin Bootcamp (sa-learn) train BAYES
- Replies: 169
- Views: 87477
Re: SpamAssassin Bootcamp (sa-learn) train BAYES
http://spamassassin.1065346.n5.nabble.com/bayes-journal-mysteriously-disappears-td55419.html David C. McCall wrote: > DOH! I didn't include --sync in periodic sa-learn runs.... > > > slaps his forehead and returns into cave. > > > :-( > You shouldn't need --sync, unless you want to force the journa...
- 2021-01-03 13:49
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
SOLVED ! Well, sort of... Removed selection from "Verify remote server...." from hMailAdmin -> Settings -> Advanced -> SSL/TLS Never had any problems verifying certificates before. Apparently my servers do not like each other. Mattg trigged me to try the STARTTLS REQUIRED on the SMTP Route and after...
- 2021-01-03 13:10
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
It appears I have misread one line. I believed the line breaking ESMTP was "capabilities" where it in fact is "the ESMTP greeting" ... However the problem persists. Actual domain names have been changed... "BackupServer" receiving from "outside.mail" "SMTPD" 4984 510 "2021-01-03 11:50:10.867" "209.8...
- 2021-01-03 12:52
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
Hmm... I believed my certificates to be in order as there has been no indications otherwise ... but ... "TCPConnection - TLS/SSL handshake failed. Session Id: 584, Remote IP: 192.168.0.6, Error code: 336151576, Message: tlsv1 alert unknown ca" They are both LetsEncrypt and generated at the same time...
- 2021-01-03 12:40
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
Is there a possibility that the output to the logging is skewed (due to timing)? i.e the conversation goes in the correct order but the log output is slightly delayed and appears in the wrong order? I believe not. The fact that "PrimaryServer" respond with capabilities out-of-sync after negotiating...
- 2021-01-03 12:09
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
For some reason I fail to pinpoint the exact flow in the source code since I have not figured out why it only happen when the backup server connect. Is it always and only from your backup server? Also, as you say: I have had the two logs side by side on screen and they match. Do you mean they match...
- 2021-01-03 11:49
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
Try with StartTLS Required on port 25 on your backup server's SMTP route I could do that but what would that show? It is "PrimaryServer" that send capabilities out of sync after switching to TLS when it should be waiting for "BackupServer" to send EHLO first. For some reason I fail to pinpoint the ...
- 2021-01-03 11:37
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
I have had the two logs side by side on screen and they match.
- 2021-01-03 11:33
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
It is "PrimaryServer" that is out of order... "BackupServer" is not doing anything out of order. On "BackupServer" Route is defined as "acme.inc", Port 25, STARTTLS optional and both sender/recipient match as "local address" 1: Everything is run on Port 25 with StartTLS optional. 2: hMailserver.ini...
- 2021-01-03 04:15
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
Re: hMailServer Backup-MX acting weird!
I'm sure that you checked all of these settings, but just getting how this works out of my head and written down... So it has to be one of the settings specific to the IP address of your backup server, as shown on your Primary server, and different to the internet IP range OR It could be in the SMT...
- 2021-01-03 01:33
- Forum: General discussions
- Topic: hMailServer Backup-MX acting weird!
- Replies: 26
- Views: 1604
hMailServer Backup-MX acting weird!
I have two hMailServers 5.6.8 B2505.RvdH+. One is "PrimaryServer" and one is "BackupServer" - each server have their own internet router. --- Fiber (primary) Router #1 --- / \ Internet --- --- LAN \ / --- 4G (backup) Router #2 --- Both servers share the same LAN but with different Default gateways (...
- 2021-01-01 02:22
- Forum: Off-topic discussions
- Topic: Hmailserver - the social organiser
- Replies: 26
- Views: 2379
- 2021-01-01 02:07
- Forum: Off-topic discussions
- Topic: Hmailserver - the social organiser
- Replies: 26
- Views: 2379
Re: Hmailserver - the social organiser
and i will kick off by wishing those that celebrate the new year starting at 1st of january a merry new year ( 9 hours in advance here, but should be in half of Australia by now ) Yep, that was 12:17 am my time when you posted that Happy New Year Happy New Year ... 01:00, songs are all sung - still...
- 2021-01-01 00:16
- Forum: Off-topic discussions
- Topic: Hmailserver - the social organiser
- Replies: 26
- Views: 2379
Re: Hmailserver - the social organiser
Watching "Another round" with the family... Duly following the 0,05 BAC
Guys !!
You need to watch this movie - Really - It's an eye opener !
https://www.imdb.com/title/tt10288566/

Guys !!
You need to watch this movie - Really - It's an eye opener !
https://www.imdb.com/title/tt10288566/
- 2020-12-31 19:34
- Forum: Off-topic discussions
- Topic: Hmailserver - the social organiser
- Replies: 26
- Views: 2379
- 2020-12-31 17:58
- Forum: General discussions
- Topic: relayer
- Replies: 18
- Views: 1281
Re: relayer
The only way I wasted my time is coming to hmail forum and getting nothing useful to solve the problem. hmail is NOT the usual email client. I can easily send email out Comcast using Thunderbird or even an old version of OE on port 465, but I can't do it using hmail server. I know how relays work. ...
- 2020-12-30 17:10
- Forum: Scripting
- Topic: Parsing Public Suffix List in VBS
- Replies: 11
- Views: 2957
Re: Parsing Public Suffix List in VBS
Object required at this line. WScript.Echo "Record SpamEHLO: " & strDomain & " as Main Domain: " & Chr(34) & RecordSpamDomain & Chr(34) Any help please. By the way this is not included in your hMailServer-Firewall-Ban. Also Implemented it and working fine. Thanks for that wonderful Share. Though no...
- 2020-12-30 17:04
- Forum: Scripting
- Topic: Simple Auto Whitelist
- Replies: 14
- Views: 1300
Re: Simple Auto Whitelist
I like the simplicity of this concept concept is useful and serves me fine since many years. however in case of BATV (fortunately not so common yet) it's useless. i add such Froms to SA whitelist - just as a workaround, not wise. What is BATV? https://en.wikipedia.org/wiki/Bounce_Address_Tag_Valida...
- 2020-12-30 03:01
- Forum: Scripting
- Topic: Simple Auto Whitelist
- Replies: 14
- Views: 1300
Re: Simple Auto Whitelist
IIRC it was a dynamic Greylist Whitelisting ... https://www.hmailserver.com/forum/viewt ... 49#p205049jimimaseye wrote: ↑2020-12-30 02:01There is a script around here somewhere that does as you describe. I think it was written by soren.
Maybe worth comparing.
[Entered by mobile. Excuse my spelling.]
- 2020-12-30 02:47
- Forum: General discussions
- Topic: I am thinking that this should not be allowed
- Replies: 22
- Views: 1808
Re: I am thinking that this should not be allowed
Just remembered ... I modified my IDS to include ALL ports and ALL protocols ... SMTP not sending email x3 = BAN, POP3/IMAP not authenticating x3 = BAN. I noticed that its botnets that try guessing passwords and because I collect statistics on my firewall ban project, its a rare occasion indeed tha...