Search found 351 matches

by tunis
2024-01-17 09:27
Forum: General discussions
Topic: Starting hMailServer stop MySQLservice and corupt data?
Replies: 13
Views: 1038

Re: Starting hMailServer stop MySQLservice and corupt data?

Your email is not stored in your mysql.
Run "DataDirectorySynchronizer" to add your missing email to mysql.
by tunis
2023-12-01 16:01
Forum: Development & alpha discussions
Topic: Help with HMailer and Lets Encrypt SSL!
Replies: 9
Views: 2439

Re: Help with HMailer and Lets Encrypt SSL!

Matt always says why bother with that. 99.99% guaranteed windows will be restarted within 55 days. And he's right as far as I can tell. :D My Windows 2019 core server has run in 537 days and I install all update on it and never needed to restart. So I guess that means you don't back up your system ...
by tunis
2023-12-01 15:49
Forum: Development & alpha discussions
Topic: Help with HMailer and Lets Encrypt SSL!
Replies: 9
Views: 2439

Re: Help with HMailer and Lets Encrypt SSL!

palinka wrote:
2023-12-01 13:27
Matt always says why bother with that. 99.99% guaranteed windows will be restarted within 55 days. And he's right as far as I can tell. :D
My Windows 2019 core server has run in 537 days and I install all update on it and never needed to restart.
by tunis
2023-12-01 12:26
Forum: Development & alpha discussions
Topic: Help with HMailer and Lets Encrypt SSL!
Replies: 9
Views: 2439

Re: Help with HMailer and Lets Encrypt SSL!

I use nginx web server and I got chain-cert and key separately.

I have a script on my web server that copy it to my hmail server.
On hmail server I have a daily script that restart hmail server if new cert has been copied.
by tunis
2023-12-01 12:16
Forum: Scripting
Topic: How to needed for Multi SMTP Relay
Replies: 17
Views: 4707

Re: How to needed for Multi SMTP Relay

I have done this with just routes and rules.

Add a route and name for example "relay-joe".
Add a rule with Criteria from contains "joe@example.com", Action Send using route to "relay-joe".
by tunis
2023-10-20 15:35
Forum: General discussions
Topic: hMailServer reports incorrect RFC822.SIZE
Replies: 92
Views: 25078

Re: hMailServer reports incorrect RFC822.SIZE

VB script ***not tested*** ' COM authentication Const ADMIN = "Administrator" Const PASSWORD = "supersecret" Dim oApp : Set oApp = CreateObject("hMailServer.Application") Call oApp.Authenticate(ADMIN, PASSWORD) sDataDir = oApp.Settings.Directories.DataDirectory Set oDatabaseObject = oApp.Database S...
by tunis
2023-10-20 15:06
Forum: General discussions
Topic: hMailServer reports incorrect RFC822.SIZE
Replies: 92
Views: 25078

Re: hMailServer reports incorrect RFC822.SIZE

VB script ***not tested*** ' COM authentication Const ADMIN = "Administrator" Const PASSWORD = "supersecret" Dim oApp : Set oApp = CreateObject("hMailServer.Application") Call oApp.Authenticate(ADMIN, PASSWORD) sDataDir = oApp.Settings.Directories.DataDirectory Set oDatabaseObject = oApp.Database Se...
by tunis
2023-08-31 11:12
Forum: General discussions
Topic: 550 Unknown user
Replies: 70
Views: 13723

Re: 550 Unknown user

This log is from my 5.6.8 B2534.28 server that using routes. "SMTPD" 2548 266781 "2023-08-31 08:11:10.590" "10.10.0.5" "SENT: 220 mydomain.se ESMTP" "SMTPD" 748 266781 "2023-08-31 08:12:02.370" "10.10.0.5" "RECEIVED: HELO Andreas" "SMTPD" 748 266781 "2023-08-31 08:12:02.370" "10.10.0.5" "SENT: 250 H...
by tunis
2023-08-31 10:49
Forum: General discussions
Topic: 550 Unknown user
Replies: 70
Views: 13723

Re: 550 Unknown user

This log is from one of my servers 5.6.9 B2641.62. "SMTPD" 3276 10746 "2023-08-31 09:32:45.040" "1.2.3.4" "SENT: 220 Make my day, punk! ESMTP" "SMTPD" 3276 10746 "2023-08-31 09:32:52.132" "1.2.3.4" "RECEIVED: HELO Andreas" "SMTPD" 3276 10746 "2023-08-31 09:32:52.132" "1.2.3.4" "SENT: 250 Hello." "SM...
by tunis
2023-08-31 09:26
Forum: General discussions
Topic: 550 Unknown user
Replies: 70
Views: 13723

Re: 550 Unknown user

If you set "Disconnect client after too many invalid commands" under Advanced/SMTP/RFC compliance. It will disconnect after x unknown user or in my case "550 Recipient not in route list." with "Too many invalid commands. Bye!" And add SorenR IDS That doesn't work because RCPT TO command is not an i...
by tunis
2023-08-31 08:19
Forum: General discussions
Topic: 550 Unknown user
Replies: 70
Views: 13723

Re: 550 Unknown user

If you set "Disconnect client after too many invalid commands" under Advanced/SMTP/RFC compliance.
It will disconnect after x unknown user or in my case "550 Recipient not in route list." with "Too many invalid commands. Bye!"

And add SorenR IDS
by tunis
2023-06-26 09:18
Forum: General discussions
Topic: hMailServer is not accessible locally
Replies: 20
Views: 2744

Re: hMailServer is not accessible locally

Have you change tcp/ip ports?
This should be 0.0.0.0.
If you entered a ip, 127.0.0.1 do not work any more.
by tunis
2023-04-28 08:01
Forum: General discussions
Topic: How to migrate data from SQL Server to MySQL
Replies: 5
Views: 736

Re: How to migrate data from SQL Server to MySQL

Also check for fullpath name of mail in db if you not install the new with same path to your mail as the old.
Run the diagnostics in hMailserver GUI tells you that.
by tunis
2023-03-24 09:36
Forum: General discussions
Topic: Apple mail connects multiple times
Replies: 6
Views: 1220

Re: Apple mail connects multiple times

As the log show mail client has multiple account and all try to fetch mail at same time.
At least one account has wrong password and autoban kicks in for that ip-address.
by tunis
2023-03-24 09:08
Forum: Scripting
Topic: ONExternalDownload Count Attachments and types
Replies: 16
Views: 4814

Re: ONExternalDownload Count Attachments and types

Wrong positioning. Move down For to under AttachTypes assignment, else it resets after every loop. Sub OnExternalAccountDownload(oFetchAccount, oMessage, sRemoteUID) Dim i, AttachCount, AttachTypes If Not (oMessage Is Nothing) Then AttachCount = 0 AttachTypes = "" For i = 0 To oMessage.Headers.Coun...
by tunis
2023-03-22 17:02
Forum: General discussions
Topic: eml files not delivered to Mailsender
Replies: 7
Views: 1554

Re: eml files not delivered to Mailsender

RECEIVED lines are from the other server you send to. Here are some examples from my log. "SMTPC" 3488 113971 "2023-03-22 15:49:06.907" "111.222.333.444" "RECEIVED: 250 2.6.0 <d17f3124bfc04c3c8d4e480d9b4bc457@xxxx> [InternalId=71030169174628, Hostname=AS8PR03MB8003.eurprd03.prod.outlook.com] 5667419...
by tunis
2023-03-07 17:50
Forum: General discussions
Topic: Invalid CSRF token error when logging in to PHPWebAdmin
Replies: 37
Views: 14416

Re: Invalid CSRF token error when logging in to PHPWebAdmin

DrmCa wrote:
2023-03-07 16:25
Where, in which PHP file and on which line, can I carve the CSRF function out of the web admin? I have no use for it, the site being on the secure intranet, and it is causing nothing but ongoing problems.
In index.php line 19

Code: Select all

define('CSRF_ENABLED', true);
set it to false
by tunis
2023-02-15 09:13
Forum: General discussions
Topic: My mailbox cannot send or receive any emails, where should I check the problem
Replies: 5
Views: 840

Re: My mailbox cannot send or receive any emails, where should I check the problem

soydct wrote:
2023-02-14 20:36
jimimaseye wrote:
2023-02-14 20:19
Under troubleshooting
https://www.hmailserver.com/documentati ... e=overview
I tried it, my service provider banned port 25, but I could use it before and I don’t know why, but now I can’t use it
If port 25 it blocked you can't receive any email.
by tunis
2023-01-31 14:04
Forum: General discussions
Topic: STARTTLS error
Replies: 23
Views: 1603

Re: STARTTLS error

Hi SorenR, I know how works SMTP. My config is : SMTP 25 secure NONE my email client working but server received message from other smtp server this message. Remote server replied: Server does not support STARTTLS. When I change this secure option to STARTTLS(optional) I cant send email because my ...
by tunis
2022-11-17 09:37
Forum: General discussions
Topic: Spoofed From Header
Replies: 4
Views: 920

Re: Spoofed From Header

I use this script to block and autoban spoofed from. PS Users can't send e-mail on port 25 either without script changes. Private Const ADMIN = "Administrator" Private Const PASSWORD = "SECRETPASSWORD" Sub OnAcceptMessage(oClient, oMessage) If InStr(oMessage.From, "@MYDOMAIN.LTD") > 0 and oClient.Po...
by tunis
2022-11-15 17:07
Forum: General discussions
Topic: hmailserver random high cpu peaks
Replies: 29
Views: 2462

Re: hmailserver random high cpu peaks

I got this every time my phone search for new mail. I use gmail app and it seems like it just drop the connection after the app is done. "DEBUG" 2920 "2022-11-15 15:50:49.929" "Creating session 505" "TCPIP" 2920 "2022-11-15 15:50:49.929" "TCP - x.x.x.x connected to 10.1.0.61:993." "DEBUG" 2920 "2022...
by tunis
2022-11-14 14:13
Forum: General discussions
Topic: hmailserver random high cpu peaks
Replies: 29
Views: 2462

Re: hmailserver random high cpu peaks

I'm running .52 (changed my signature)
by tunis
2022-11-14 14:08
Forum: General discussions
Topic: hmailserver random high cpu peaks
Replies: 29
Views: 2462

Re: hmailserver random high cpu peaks

RvdH wrote:
2022-11-14 13:01
You don't have any logs available by any chance that could provide info on a session that is being held until restart?
Sorry, only logged smtp logs and I don't remember which day.

But I have turn them on now, no high cpu the last two weeks.
by tunis
2022-11-14 12:24
Forum: General discussions
Topic: hmailserver random high cpu peaks
Replies: 29
Views: 2462

Re: hmailserver random high cpu peaks

I have also get high CPU with your built two times.
by tunis
2022-10-17 13:23
Forum: General discussions
Topic: PHPWebAdmin problem
Replies: 20
Views: 3390

Re: PHPWebAdmin problem

juszyn wrote:
2022-10-17 10:15
Hello,

I currently have a message:

PHP Parse error: syntax error, unexpected '=' in C:\inetpub\wwwroot\PHPWebAdmin\config.php on line 15


However, the values ​​in config.ini and php.ini are correct.
The value can't be in config.php, only in php.ini.
by tunis
2022-10-13 09:03
Forum: General discussions
Topic: Sending email to a user in the same domain after implementing DKIM
Replies: 5
Views: 1293

Re: Sending email to a user in the same domain after implementing DKIM

I have one server as a front for exchange. I have added domain and route for that. Then a account for sending mail. This address cannot exist on route server, so I use some random "iogerh734hgt@mydomain.com". This account used by my exchange, printers and all other stuff. PS. For DKIM to work you ha...
by tunis
2022-09-02 11:29
Forum: General discussions
Topic: Invalid CSRF token error when logging in to PHPWebAdmin
Replies: 37
Views: 14416

Re: Invalid CSRF token error when logging in to PHPWebAdmin

DrmCa wrote:
2022-09-01 14:42
Mine is

Code: Select all

https://192.168.2.4/PHPWebAdmin/
Then edit your config.php to

Code: Select all

$hmail_config['rooturl'] = "https://192.168.2.4/PHPWebAdmin/"
by tunis
2022-09-01 09:43
Forum: General discussions
Topic: Invalid CSRF token error when logging in to PHPWebAdmin
Replies: 37
Views: 14416

Re: Invalid CSRF token error when logging in to PHPWebAdmin

Invalid CSRF token. How can I get a working web admin other than by inserting return true; before die; in the CSRF check? In the config your rooturl must be set to your url. $hmail_config['rooturl'] = "http://localhost/"; If you rooturl is localhost and you not use that to login you got fail on CSR...
by tunis
2022-05-25 13:27
Forum: General discussions
Topic: Migrating from WIndows SMTP to hMailServer
Replies: 18
Views: 3384

Re: Migrating from WIndows SMTP to hMailServer

You can use powershell to monitoring a folder for new files. https://letmegooglethat.com/?q=How+to+monitor+a+folder+for+new+files%3F $watcher = New-Object System.IO.FileSystemWatcher $watcher.Path = 'C:\Pickup' $watcher.EnableRaisingEvents = $true $action = { $path = $event.SourceEventArgs.FullPath ...
by tunis
2022-05-24 12:02
Forum: General discussions
Topic: POP3 download and forward to external recipient failed
Replies: 1
Views: 411

Re: POP3 download and forward to external recipient failed

As your error message show hmail forwards the mail and the receiving server (192.168.178.4) throw an error.

Code: Select all

550 5.7.54 SMTP; Unable to relay recipient in non-accepted domain
Is the domain uploadmail.datev.de valid?
It seems not to be configured right.
by tunis
2022-05-12 10:02
Forum: General discussions
Topic: I think I need help setting up the proper connection security settings.
Replies: 26
Views: 2081

Re: I think I need help setting up the proper connection security settings.

Ah yeah, this is what I ended up doing. It's all on the same server but I ended up just using the external domain to connect (instead of localhost) so I don't have to play around with it any further. Are there any adverse effects to what I did, do you think? Your certificate on the server is for ex...
by tunis
2022-05-06 14:30
Forum: General discussions
Topic: Domain / ROUTE question
Replies: 1
Views: 541

Re: Domain / ROUTE question

Yes, all email addresses not exists on HM for that domain are sent with your route you made for that domain.
by tunis
2022-05-03 11:56
Forum: User-submitted tutorials
Topic: Hardening hMailServer - The ongoing saga!
Replies: 158
Views: 189844

Re: Hardening hMailServer - The ongoing saga!

Is this what i have to do? Sub OnClientConnect(oClient) REM - Exclude Backup-MX & local LAN from test If (Left(oClient.IPAddress, 12) = "94.105.266.80") Then Exit Sub ' MY IP THAT I WANT TO EXLUDE If (Left(oClient.IPAddress, 11) = "192.168.22.") Then Exit Sub ' local LAN If oClient.IPAddress = "127...
by tunis
2022-04-28 10:15
Forum: General discussions
Topic: What SMTP relay is best?
Replies: 4
Views: 1132

Re: What SMTP relay is best?

Tested Sendinblue and it was not for me. It's more for newsletters and it rewrites all headers and add tracking image. Bounces are only logged at their site and do not sent back to me. Some added headers From: "My name" <my-email> List-Unsubscribe: <mailto:unsubscribe-t@gx.d.sender-sib.com?subject=u...
by tunis
2022-04-28 08:46
Forum: General discussions
Topic: Change mailer-daemon domain
Replies: 5
Views: 1194

Re: Change mailer-daemon domain

I forget I have set this in ini.
by tunis
2022-04-27 14:21
Forum: General discussions
Topic: Retry settings not working
Replies: 2
Views: 528

Re: Retry settings not working

I don't think it's retry when you get authenticate fail.

You have a connection and get denied, then it would not retry.
by tunis
2022-04-27 14:14
Forum: General discussions
Topic: Remote server replied in message from mailer-daemon
Replies: 4
Views: 1028

Re: Remote server replied in message from mailer-daemon

johang wrote:
2022-04-27 13:07
difference in error message handleing between "relay and "direct connection" ?
Both is direct connection but different remote servers.
by tunis
2022-04-27 11:16
Forum: General discussions
Topic: Change mailer-daemon domain
Replies: 5
Views: 1194

Re: Change mailer-daemon domain

I found it in source code. https://github.com/hmailserver/hmailserver/blob/master/hmailserver/source/Server/Common/Util/MailerDaemonAddressDeterminer.cpp String sHostName = Configuration::Instance()->GetHostName(); Or in ini if (!IniFileSettings::Instance()->GetDaemonAddressDomain().IsEmpty()) { sHo...
by tunis
2022-04-27 10:37
Forum: General discussions
Topic: Remote server replied in message from mailer-daemon
Replies: 4
Views: 1028

Re: Remote server replied in message from mailer-daemon

It can handles some error.

Code: Select all

xxx@xxx.se
   Error Type: SMTP
   Remote server (104.47.13.36) issued an error.
   hMailServer sent: RCPT TO:<xxx@xxx.se>
   Remote server replied: 550 5.4.1 Recipient address rejected: Access denied. AS(201806281) [HE1EUR04FT045.eop-eur04.prod.protection.outlook.com]
by tunis
2022-04-27 10:33
Forum: General discussions
Topic: Change mailer-daemon domain
Replies: 5
Views: 1194

Re: Change mailer-daemon domain

johang wrote:
2022-04-27 10:11
i thought it came from what you put up as "local host name" [settings][Protocols]SMTP][delivery of email tab]

or if you have a script that rewrites it
That was what I thought, I have domainB as "local host name" in [settings][Protocols][SMTP][delivery of email tab]
by tunis
2022-04-27 10:01
Forum: General discussions
Topic: Remote server replied in message from mailer-daemon
Replies: 4
Views: 1028

Remote server replied in message from mailer-daemon

Hello, I just wonder how hmailserver is getting error messages from other servers? This is error mail from hmailserver mailer-daemon. The following recipient(s) could not be reached: xxx@telia.com Error Type: SMTP Remote server (81.236.60.210) issued an error. hMailServer sent: HELO myserver Remote ...
by tunis
2022-04-27 09:44
Forum: General discussions
Topic: Change mailer-daemon domain
Replies: 5
Views: 1194

Change mailer-daemon domain

Hey, when my ISP shutdown their SMTP relay and I got error mail from mailer-daemon@domainA.

I don't use domainA name any more and have changed it to domainB in hmailAdmin.

But where is the settings for mailer-daemon domain.
How do i change this?
I have multi-domain on my hMail server.
by tunis
2022-04-27 09:32
Forum: General discussions
Topic: What SMTP relay is best?
Replies: 4
Views: 1132

What SMTP relay is best?

Hello, my ISP has shutdown their SMTP relay and they not using reverse dns.

I'm looking for a new SMTP relay service for my home mail (100 mail a year).
I looked at sendgrid, mailjet and sendinblue.

Do you have any suggestions?
by tunis
2022-04-11 10:56
Forum: General discussions
Topic: many logfile- entry like attack
Replies: 33
Views: 3546

Re: many logfile- entry like attack

What's about the ever same ELHO- line? Can we not just create a rule that kill the connection right now and maybe kick it in the AutoBan if that comes from a localhost? Just ask... If you have the version with OnHELO. This is my script. Private Const ADMIN = "Administrator" Private Const PASSWORD =...
by tunis
2022-04-06 15:41
Forum: User-submitted tutorials
Topic: Hardening hMailServer - The ongoing saga!
Replies: 158
Views: 189844

Re: Hardening hMailServer - The ongoing saga!

You can install mysqls odbc driver for free. https://dev.mysql.com/downloads/connector/odbc/ Hey tunis, i installed this, but i get the same Error from Windows Script Host. Do i have to do some settings in the installed ODBC-Connector? Greetings Open ODBC in Windows and the driver tab. In that list...
by tunis
2022-04-05 09:55
Forum: User-submitted tutorials
Topic: Hardening hMailServer - The ongoing saga!
Replies: 158
Views: 189844

Re: Hardening hMailServer - The ongoing saga!

udgesbou wrote:
2022-04-04 23:54
palinka wrote:
2022-04-04 23:13
Do you have ODBC connector installed?
I don't think so :(

Is this what I have to do?
https://blog.devart.com/installing-odbc ... ndows.html

Thanks!
You can install mysqls odbc driver for free.
https://dev.mysql.com/downloads/connector/odbc/
by tunis
2022-04-01 09:44
Forum: General discussions
Topic: EHLO issue
Replies: 26
Views: 3912

Re: EHLO issue

It looks like I have achieved this by leaving the 'Welcome message' blank That is the default behavior. In my case I cheat since my server(s) do not have rDNS after I switched ISP's. My welcome message is my ISP provided rDNS plus ESMTP and my local host name (EHLO greeting) is my MX hostname. Some...
by tunis
2022-02-22 15:27
Forum: Off-topic discussions
Topic: hMailServer future
Replies: 256
Views: 132250

Re: hMailServer future

See here (self promotion :D ) : https://blog.bagu.biz/?post/2021/11/23/Installation-de-windows-11-avec-un-compte-local-ou-sans-connexion-internet You can install Windows 11 without Microsoft account, but it's not as simple as it may be... You can also just remove the network cable after you clicked...
by tunis
2022-02-22 14:47
Forum: Off-topic discussions
Topic: hMailServer future
Replies: 256
Views: 132250

Re: hMailServer future

Splitting HmailServer into several modules might be convenient for you, but for the vast majority of people who need a product that is easy to use and install, it makes things very complicated. So what would be the difference with a POSTFIX based package? Heck, Windows 11 Home cannot be installed w...
by tunis
2022-02-22 14:26
Forum: General discussions
Topic: Enable SSL in hMailServer via LetsEncrypt
Replies: 3
Views: 2071

Re: Enable SSL in hMailServer via LetsEncrypt

I'm using win acme on one server. This is my settings for win acme. (port 80 must be open to internet for win acme) wacs.exe --target manual --host mail.mydomain.com --store pemfiles --pemfilespath "C:\hMailServer\Data" --installation script --script "c:/Scripts/Restart-hMailServer.ps1" After you ha...
by tunis
2022-02-09 12:53
Forum: General discussions
Topic: Strange problem with aruba providers
Replies: 7
Views: 1571

Re: Strange problem with aruba providers

Lopez19 wrote:
2022-02-09 12:41

"DEBUG" 16012 "2022-02-09 11:40:12.194" "Performing SSL/TLS handshake for session 212. Verify certificate: True, Expected remote host name: pop3s.aruba.it"
Uncheck "Certificate verification" under settings->Advanced->SSL/TLS.
by tunis
2022-01-19 14:08
Forum: General discussions
Topic: SMTP relay of own domain?
Replies: 5
Views: 1485

Re: SMTP relay of own domain?

Why not send from sender@example.local.
All mail sent go to what MX is setup to. No routes needed.

Ignore this Dkim not working for this.
by tunis
2022-01-03 12:08
Forum: General discussions
Topic: MS Y2K22 problem !?!?
Replies: 5
Views: 1372

Re: MS Y2K22 problem !?!?

I have just fixed our exchange we have.
Not big, only 350 mail in queue.
by tunis
2021-11-04 10:06
Forum: Feature requests
Topic: Migrate database MySql to MS SQL External Engine
Replies: 8
Views: 8772

Re: Migrate database MySql to MS SQL External Engine

I think you only need to run backup from hmailadmin and deselect messages.
Run DBsetup.exe and setup MS SQL.
Restore backup in hmailadmin and select settings and domains.

I have not test it.
by tunis
2021-10-29 15:57
Forum: General discussions
Topic: Strange problems connecting to hMailServer from italy
Replies: 21
Views: 3665

Re: Strange problems connecting to hMailServer from italy

Maybe the ssl Zertificate from Let's Encrypt https://ssl-tools.net/mailservers/mahop.net there is something broken with the cert, says you have a "problem" with certificates.. and says you have an Unknown Authority under R3 ( let's encrypt ) and no root CA when i check my server it says i do have a...
by tunis
2021-10-14 13:12
Forum: General discussions
Topic: Log Entries Show Sending Server Fails TLS Handshake No Shared Cipher On Repeat Send TLS Not Used
Replies: 37
Views: 6502

Re: Log Entries Show Sending Server Fails TLS Handshake No Shared Cipher On Repeat Send TLS Not Used

I have looked at the doc page. https://www.openssl.org/docs/man1.1.1/man1/ciphers.html I don't know if i have right, but it seems using CIPHER SUITE NAMES for the right TLS version if you don't have a cipher list. If it does it can be different between OpenSSL version. In version 1.1.0 DES was remov...
by tunis
2021-10-14 09:32
Forum: General discussions
Topic: Log Entries Show Sending Server Fails TLS Handshake No Shared Cipher On Repeat Send TLS Not Used
Replies: 37
Views: 6502

Re: Log Entries Show Sending Server Fails TLS Handshake No Shared Cipher On Repeat Send TLS Not Used

I looked at my logs and I see TLS 1.3 presents different and are not in my cipher list. TLS_AES_256_GCM_SHA384 TLS_AES_128_GCM_SHA256 On all adder TLS it's logged as cipher list format. ECDHE-RSA-AES256-GCM-SHA384 Does TLS 1.3 work without cipher list or has OpenSSL an internal list? I have not AES-...
by tunis
2021-09-15 13:01
Forum: General discussions
Topic: Trouble Installing hMailServer
Replies: 2
Views: 3233

Re: Trouble Installing hMailServer

On Server 2019 you need to install netfx3 from your installation media (CD or USB)
Do not work from internet.

Code: Select all

netfx3 Dism /online /enable-feature /featurename:Netfx3 /all /Source:D:\sources\sxs
Change D: to your drive for the installation media of windows server 2019.

Then install hmailserver.
by tunis
2021-09-01 11:49
Forum: Scripting
Topic: Rules Plugin for Roundcube
Replies: 5
Views: 6918

Re: Rules Plugin for Roundcube

I have not get it to work with the new Elastic skin.