Questions tagged [hmail-server]

hMailServer is a free e-mail server for Microsoft Windows.

hMailServer is a free e-mail server for Microsoft Windows created by Martin Knafve.

It runs as a Windows service and includes administration tools for management and backup. It has support for IMAP, POP3, and SMTP email protocols. It can use external database engines such as MySQL, MS SQL or PostgreSQL, or an internal MS SQL engine to store configuration and index data. The actual email messages are stored on disk in a raw MIME format. Read More on Wikipedia..

89 questions
2
votes
0 answers

.Net Sending SMTP Mail from dev machine (not server) utilizing hmailserver

I've been trying to figure out how to make my smtp mail to work. I have my dev environment set up on my computer, it currently uses Windows 7 home premium. Whenever I'm done doing changes I'd publish it to my host. Now I have a few site…
gdubs
  • 2,724
  • 9
  • 55
  • 102
2
votes
3 answers

Fatal error: Class 'COM' not found in E:\Server\wwwroot\PHPWebAdmin\initialize.php on line 13

I am trying to set up hMailServer in "Windows Server 2008 Enterprise Edition Service Pack 1".I've setup hMailServer,Apache,PHP and webmail Interface "AfterLogic webMail" successfully.And all work well.But I am stuck in a problem while I tried to…
carl
  • 188
  • 1
  • 1
  • 8
2
votes
5 answers

Java connecting to localhost SMTP server

What is wrong with this code? I'm trying to send a email on my localhost with hMailServer, but it is not working. While this code is working for the Gmail SMTP server.. I might think the error is in my hMailServer, but I can't find it.. try{ …
Danny Gloudemans
  • 2,597
  • 7
  • 39
  • 57
1
vote
0 answers

Error sending emails to an external server hmailserver?

I encountered a strange oddity, when I try to send messages to an external mail server, I receive this email Your message did not reach some or all of the intended recipients. Sent: Sun, 4 Apr 2021 16:04:00 +0300 Subject: ping The following…
stas stas
  • 95
  • 10
1
vote
0 answers

Is using NoIP with hMail or Mercury mail possible?

I have DDNS with no IP address (free) and its IP / target is 127.0.0.1 (localhost). Is it possible to use this domain as an E-mail server in the program such as Mercury or hMail? If so, how?
Ork Ork
  • 11
  • 1
1
vote
1 answer

hMailServer with Domain - WAMP

I came into a struggle the last few days. Using WAMP Server and following this Tutorial I set up a local email environment, and I wanted to make the emails reach accounts outside of the local host. I heard you need to make some changes in the DNS…
MikeMart77
  • 13
  • 7
1
vote
2 answers

hMailServer password hashing

I have installed hMailServer on Windows and linked it to MySQL. While I am creating email accounts, passwords that I am entering while creation are hashed before inserted the database.(I do not which type of an algorithm is used while hashing.…
Murad Zulfugarov
  • 359
  • 1
  • 4
  • 14
1
vote
1 answer

smtp (set up using hmailserver) localhost to gmail message sending not working n python on Windows10

I am trying to write a python code which will send error message to my email account. I sending message using smtplib from localhost to my gmail account. I am trying following in jupyter notebook: import smtplib SERVER = "localhost" LOGIN =…
1
vote
0 answers

Message containing bare lf's

I have a problem with sending mail from PHP. $to = 'admin@****'; $subject = 'the subject'; $message = 'hello'; $headers = 'From: webmaster@****' . "\r\n". 'Reply-To: webmaster@****' . "\r\n" . 'X-Mailer: PHP/' .…
anno9
  • 13
  • 3
1
vote
1 answer

DKIM hmailserver and NameCheap Setup

I've been trying to setup my hmailserver with DKIM. I was following this guide -> https://www.hmailserver.com/forum/viewtopic.php?t=29402 And I created my keys with this site -> https://www.port25.com/dkim-wizard/ Domain name: linnabary.us DomainKey…
Kayot
  • 582
  • 2
  • 20
1
vote
1 answer

Why Swift Mailer let to send message without password?

Using SwiftMailer package in php and local mail server hMailServer. Php code: setFrom('webmaster@mail.com'); $message->setTo(array('testmail@mail.com'=>'Ilqar…
Ilqar Rasulov
  • 169
  • 1
  • 2
  • 10
1
vote
1 answer

Can we deduplicate emails retrieved through IMAP by hash?

I'm trying to achieve at-most-once processing of email messages retrieved over IMAP. (I asked a related question about it.) Is it reliable to compute a cryptographic hash code of the MIME messages retrieved over IMAP to deduplicate them? In other…
boot4life
  • 4,966
  • 7
  • 25
  • 47
1
vote
2 answers

hMailServer - server scripts - trigger external DLL function?

maybe it is a dummy question and there exists better approaches, but I wonder if there is any possibility of catching an event on incoming email using server side script and inside that script would be external DLL call or script which connect to…
1
vote
2 answers

how to setup hmail server with a django project

I am trying to setup open source hmailserver with a django project. I have set up the server according to documentation. But I dont know how to use it with django. For gmail i was using this setting: EMAIL_USE_TLS = True EMAIL_HOST =…
Manish Gupta
  • 4,438
  • 18
  • 57
  • 104
1
vote
1 answer

How to retrieve message from hMailServer with message_id?

I have hMailServer installed and want to integrate e-mails into our application. I have set up a prototype which gets all folders (imap_mailboxmsginfo), then gets all messages from all folders (imap_fetch_overview), then gets the data from each…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047