Okkk!!
1)you mean to say in OnDeliveryFunction I cant put some code to mail someone. it would get into infinite loop....
one more thing I want to ask because of so many mails from my server will harm my server in terms of spamming . I mean would it increase the spam rating of my server..
Search found 40 matches
- 2010-05-07 10:21
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
- 2010-05-07 09:44
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
here recipient was -- R it forward all his emails to F and I am - D ( I get ONE mail for every successful delivery or every delivery failure- because of eventhandler.vbs) you said- You need to ensure that if you are the recipient that it doesn't forward the message... does it mean that if recipient ...
- 2010-05-07 08:54
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
It worked but I got a bigger problem I run the code only once and recipient (saket.namdev@gmail.com) got only one mail but I (nishantgauttam@gmail.com) got around 500 of mails. and I am still gettingmails. My inbox is flooded. and log file is also flooded. I modified OnDelivery and OnDeliveryFailed ...
- 2010-05-07 07:36
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
Now I am getting this error- line 29th is - oMessage = CreateObject("hMailServer.Message") "SMTPD" 42312 141 "2010-05-07 11:00:36.961" "127.0.0.1" "RECEIVED: MAIL FROM:<nishant@schoolsearch.in>" "SMTPD" 42312 141 "2010-05-07 11:00:36.977" "127.0.0.1" "SENT: 250 OK" "SMTPD" 58552 141 "2010-05-07 11:0...
- 2010-05-07 07:15
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
I changed- oMessage.AddRecipient (MessageRecipientName, MessageRecipientAddress) to oMessage.AddRecipient MessageRecipientName, MessageRecipientAddress got following error- "SMTPD" 65644 139 "2010-05-07 10:39:24.336" "127.0.0.1" "RECEIVED: MAIL FROM:<nishant@schoolsearch.in>" "SMTPD" 65644 139 "2010...
- 2010-05-07 06:42
- Forum: General discussions
- Topic: Return-Path address is not working
- Replies: 10
- Views: 4737
Re: Return-Path address is not working
1)you mean to say Bounce messages are always sent to the from address. isn't it there any way from which you can make it deliver to some different address.
2) when you specify a wrong emailId then does OnDeliveryFailed function of eventhandler.vbs gets called?
2) when you specify a wrong emailId then does OnDeliveryFailed function of eventhandler.vbs gets called?
- 2010-05-07 06:33
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
I replaced this oApp.Authenticate("Administrator", g_sAdminPassword) with Call oApp.Authenticate("Administrator", g_sAdminPassword) got following error- "ERROR" 25604 "2010-05-07 10:00:49.696" "Script Error: Source: Microsoft VBScript compilation error - Error: 800A0414 - Description: Cannot use par...
- 2010-05-06 20:54
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
earlier it was like that only but then I was getting same error (Cannot use parentheses when calling a Sub ) at
oMessage.AddRecipient(MessageRecipientName, MessageRecipientAddress)
should I replace this line also with Call oMessage.AddRecipient(MessageRecipientName, MessageRecipientAddr)
oMessage.AddRecipient(MessageRecipientName, MessageRecipientAddress)
should I replace this line also with Call oMessage.AddRecipient(MessageRecipientName, MessageRecipientAddr)
- 2010-05-06 11:27
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
Re: vb script in hmail administrator is not working
gtting following error in logs- "ERROR" 25604 "2010-05-06 14:47:52.789" "Script Error: Source: Microsoft VBScript compilation error - Error: 800A0414 - Description: Cannot use parentheses when calling a Sub - Line: 25 Column: 61 - Code: oApp.Authenticate("Administrator", g_sAdminPassword)" "ERROR" 2...
- 2010-05-05 14:54
- Forum: General discussions
- Topic: access hmail server database
- Replies: 1
- Views: 803
access hmail server database
1. I use mssql server as hmail server database.
there is .sdf file in program files/hmailserver/database. How can I access this file?
2. how to change the connect password which is asked by hmailserver administrator on start.
there is .sdf file in program files/hmailserver/database. How can I access this file?
2. how to change the connect password which is asked by hmailserver administrator on start.
- 2010-05-05 14:32
- Forum: Scripting
- Topic: vb script in hmail administrator is not working
- Replies: 18
- Views: 6655
vb script in hmail administrator is not working
I added following in OnDeliveryFailed function and in onDelivery function in VB script --------------------------------------------------------------------------------------------------------------------------- Const g_sBNFrom = "hMailServer Backup" 'CHANGE ME Const g_sBNFromAddress = "nishant@schoo...
- 2010-05-04 10:13
- Forum: General discussions
- Topic: Return-Path address is not working
- Replies: 10
- Views: 4737
Re: Return-Path address is not working
I want to have a track on failure delivery mails . I think I can do it in two ways 1) specify a reply-to address. so that all failure deliveries would go to this emailId and I would run a script to read email from POP3 server and parse it to detect failures for emailId and blacklist those emailsId ...
- 2010-05-03 14:10
- Forum: General discussions
- Topic: Return-Path address is not working
- Replies: 10
- Views: 4737
Re: Return-Path address is not working
If you build a .net.mail.mailmessgae message will it get sent by hMailserver or your local IIS SMTP?? - it will be sent by hmailserver only. it comes in hmail server logs Have you tried building a message with the hMailserver Message class instead? I dont know about this. could you tell me more on ...
- 2010-05-03 13:33
- Forum: General discussions
- Topic: Return-Path address is not working
- Replies: 10
- Views: 4737
Re: Return-Path address is not working
I tried with replyTo list and even with VB documentation (acc to dcumentation return path in header should work) but still not getting any failure delivery mail. actually for incoming mails I use google apps, and for outgoing mails I use hmailserver. so when hmail server finds out a wrong emailId wh...
- 2010-05-03 12:46
- Forum: General discussions
- Topic: Return-Path address is not working
- Replies: 10
- Views: 4737
Return-Path address is not working
I am trying to specify a return path address to track failure deliveries. Dim msg As New System.Net.Mail.MailMessage() msg.From = New MailAddress("nishant@schoolsearch.in", "dt") Dim toadd As MailAddress toadd = New MailAddress("nishantgauttttam@gmail.com", "nishant") // a wrong email address msg.To...
- 2010-01-02 16:09
- Forum: General discussions
- Topic: hmail server implementation-2
- Replies: 8
- Views: 2891
Re: hmail server implementation-2
I only have added those records to enable google apps for my domain. because of this I have created several accounts like admin@abc.in, nishant@abc.in and I can check all these mails at https://mail.google.com/a/abc.in these google MX records are used for this. It would be kind of problem If I remov...
- 2010-01-02 15:57
- Forum: General discussions
- Topic: hmail server implementation-2
- Replies: 8
- Views: 2891
Re: hmail server implementation-2
yes doom.. i can edit my DNS records
- 2010-01-02 15:36
- Forum: General discussions
- Topic: hmail server implementation-2
- Replies: 8
- Views: 2891
Re: hmail server implementation-2
sorry sheffters ,, but doom advised me to do it to correct my MX records..
please be supportive..
please be supportive..
- 2010-01-02 15:07
- Forum: General discussions
- Topic: hmail server implementation-2
- Replies: 8
- Views: 2891
hmail server implementation-2
my mx records- nslookup results- (abc.in is my domain) abc.in MX preference=0, mail exchanger = smail.abc.in ------ i addded this record abc.in MX preference=5, mail exchanger = alt1.aspmx.1.google.com abc.in MX preference=10, mail exchanger = aspmx2.googlemail.com abc.in MX preference=10, mail exch...
- 2010-01-02 07:50
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
okkk Then... its really getting messy :) I know Matt is not going to answer me....(sorry Matt :( but i really need to do this ..) if some one else could help it would really be appreciable... I am again posting the status of all things, i dont think I am far away as in diagnostics it can resolve MX ...
- 2009-12-31 06:26
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
if everything works fine on my system, then I will install hmail server on a static IP machine (i have it but in different office). THe main purpose behind using hmail server is google mail server puts a limit of 500 emails in a day, my email susbcribers list can go beyond that and I may need to sen...
- 2009-12-31 06:05
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
C:\Documents and Settings\user>ipconfig/all Windows IP Configuration Host Name . . . . . . . . . . . . : XXXXXX Primary Dns Suffix . . . . . . . : Node Type . . . . . . . . . . . . : Hybrid IP Routing Enabled. . . . . . . . : No WINS Proxy Enabled. . . . . . . . : No Ethernet adapter Local Area Conn...
- 2009-12-30 19:16
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
obtain IP address automatically obtain DNS server address automatically Advanced TCP/IP settings- IP address - DHCP enabled DNS- DNS server address in order to use- blank Append primary and connection specific DNS suffixes - is selected Append parent suffixes of primary DNS suffix - is checked Appen...
- 2009-12-30 17:29
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
done. but dont know how to check that request will get forwarded or not....
router- DSL-2640T
could you try again
router- DSL-2640T
could you try again
- 2009-12-30 16:01
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
It worked...
next step...?
next step...?
- 2009-12-30 15:30
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
tried from another computer which is in same LAN incoming(pop3)server as 192.168.1.3 (ip of my comp)port 110 outgoing(smtp server) as 192.168.1.3 port 25 incoming mail server- Acc name- admin@schoolsearch.in passwd- passwod of above account tried with - log on using secure password connection is che...
- 2009-12-30 14:32
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
diagnostic results are same- Test: Collect server details hMailServer version: hMailServer 5.3-B1617 Database type: MSSQL Compact Test: Test IPv6 IPv6 support is not available in operating system. Test: Test outbound port SMTP relayer not in use. Attempting mail.hmailserver.com:25 Trying to connect ...
- 2009-12-30 14:03
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
1) nslookup results- server : mygateway1.ar7 address : 192.168.1.1 DNS request timed out timeout was 10 seconds DNS request timed out timeout was 10 seconds *** Request to mygateway1.ar7 timed-out Then i changed the server to 156.154.70.22 as ^DooM^ suggested me output in this case- gmail.com MX pre...
- 2009-12-30 11:35
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
sorry , I am using latest now... Test: Collect server details hMailServer version: hMailServer 5.3-B1617 Database type: MSSQL Compact Test: Test IPv6 IPv6 support is not available in operating system. Test: Test outbound port SMTP relayer not in use. Attempting mail.hmailserver.com:25 Trying to conn...
- 2009-12-30 09:48
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
under utilities there is MX query(no diagnostic)
it asks for email addrress and tries to resolve mail server for that
i tried with admin@schoolsearch.in it doesnt give anything
tried gmail id- it doesnt give anything
i think it cant resolve mailservers .
it asks for email addrress and tries to resolve mail server for that
i tried with admin@schoolsearch.in it doesnt give anything
tried gmail id- it doesnt give anything
i think it cant resolve mailservers .
- 2009-12-30 09:27
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
thnks man..... yes my server is not working- I am not able to send and receive mails now my diagnostic testresults- I tried nslookup for my domain- abc.in MX preference=5, mail exchanger = alt1.aspmx.1.google.com abc.in MX preference=10, mail exchanger = aspmx2.googlemail.com abc.in MX preference=0,...
- 2009-12-30 08:43
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
sorry for the long post, I thought its better to tell you exact situation so that it would be easier to answer , thts why i posted every thing. see I havent done this earlier, sorry for being so irritating..but of you go through earlier post and cases i tried, you could suggest me some thing as why ...
- 2009-12-30 08:21
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
hi when I do nslookup for abc.in I get following abc.in MX preference=5, mail exchanger = alt1.aspmx.1.google.com abc.in MX preference=10, mail exchanger = aspmx2.googlemail.com abc.in MX preference=0, mail exchanger = email--------------------------this record I added abc.in MX preference=10, mail ...
- 2009-12-29 13:06
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
thnx for quick reply, nslookup is working fine now,
for mx records,there was an A record already with name- www and value=IP of server
I added one MX record for this A record now, with 0 priority, it will take upto 24 hrs to update
then i can check my server is working or not..
for mx records,there was an A record already with name- www and value=IP of server
I added one MX record for this A record now, with 0 priority, it will take upto 24 hrs to update
then i can check my server is working or not..

- 2009-12-29 12:43
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
i was trying to check the dns configurations is correct or not.. in run window i typed- nslookup, clicked ok then typed- set type=mx yahoo.com server : mygateway1.ar7 address : 192.168.1.1 DNS request timed out timeout was 10 seconds DNS request timed out timeout was 10 seconds *** Request to mygate...
- 2009-12-29 09:16
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
I read that link. But what i wana ask is there are already few MX records are entered. I think these are for googleApps. I have created few mail accounts using google Apps for this . I asked my sitehosting providers they said you need to delete existing MX records. But I cant remove already existing...
- 2009-12-28 06:50
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
noo...thts what i am asking.. 
dont know where i am doing wrong.
in my earlier post i asked about what values i need to put while creating A and MX record. are those not required for sending and receiving mails ?? as nobody answered that

dont know where i am doing wrong.
in my earlier post i asked about what values i need to put while creating A and MX record. are those not required for sending and receiving mails ?? as nobody answered that
- 2009-12-27 14:27
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
my server is working...i checked who is using port 25, and hmailserver was listening on port 25
- 2009-12-27 13:08
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
Re: problem in hmail server implementaion on localhost
hey thanks for your reply- domain name- abc.in I own this domain. I have a control panel where I can add MX records- you said create an A record called mail.abc.in and point it to external IP.(the ip of my domain) Then create an MX record for abc.in . while creating a A record- Record Type: A Record...
- 2009-12-27 10:52
- Forum: General discussions
- Topic: problem in hmail server implementaion on localhost
- Replies: 43
- Views: 12195
problem in hmail server implementaion on localhost
Hi I am trying to implement hmail smtp server on my local machine. having few problems will tell you one by one- A) while starting the installation it showed me an alert that port 25 , 110 or 143 are already in use, I clicked OK and installed it successfully. I thought may be default smtp server in ...