GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Any windows server 2008 admins here? (https://gfy.com/showthread.php?t=1120302)

venus 09-04-2013 11:57 PM

Any windows server 2008 admins here?
 
anyone know their way around/trouble shooting a windows server 2008? Mine crashed, did a reinstall of the OS now its not letting my mailing list program send mail... I have a mail server on it and it sends and receives mail just fine..some reason my list program will not work. this is a dedicated server located in the Netherlands. where its located at, they don't do any software trouble shooting..

venus 09-05-2013 11:24 AM

I know it was a long shot, but still looking

Quote:

Originally Posted by venus (Post 19787118)
anyone know their way around/trouble shooting a windows server 2008? Mine crashed, did a reinstall of the OS now its not letting my mailing list program send mail... I have a mail server on it and it sends and receives mail just fine..some reason my list program will not work. this is a dedicated server located in the Netherlands. where its located at, they don't do any software trouble shooting..


Pornopat 09-06-2013 01:22 AM

Bump for Venus

Frank21 09-06-2013 01:28 AM

start with looking in your error files, in the Event Viewer!

venus 09-06-2013 01:45 AM

nothing there relating to this issue

server 2008 has been nothing but a pain in the ass..the old server 2003 worked perfect for me....waiting to hear back from icewarp if their email server will run on centOS so I can drop windows and just move to Linux


Quote:

Originally Posted by Frank21 (Post 19788644)
start with looking in your error files, in the Event Viewer!


Klen 09-06-2013 02:32 AM

Quote:

Originally Posted by venus (Post 19788653)
nothing there relating to this issue

server 2008 has been nothing but a pain in the ass..the old server 2003 worked perfect for me....waiting to hear back from icewarp if their email server will run on centOS so I can drop windows and just move to Linux

That is what i did when i had windows server.Spending time to learn about windows server is just waste of time.

Adraco 09-06-2013 02:51 AM

Does your list program need any special services to run?
Maybe that was installed on your machine at first but now maybe that specific service isn't enabled to auto-start?

Can also try the classic ones,
restart the mail server, the IIS and the Exchange storage (if using Exchange setup). Even if they say "started" those can sometimes need a "forced restart" to take care of God know what type of errors.

Paully 09-06-2013 03:00 AM

Why are you using that, DRM?

Panty Snatcher 09-06-2013 06:52 AM

catch me on icq or send me an email and we can chat on skype

I am a win-sucks pervert ( opps i mean expert )

Babaganoosh 09-06-2013 07:18 AM

What mta are you using? Does it have logs you can review? If mail is going to the same domain but mail is hosted externally, disable mail locally so it will be delivered to the proper location.

Babaganoosh 09-06-2013 07:23 AM

Dupe post

venus 09-06-2013 08:17 AM

no, its just a perl script...I saw where the message was in the maildir, but from there it does nothing, does not go out and does not show up in the admin panel and being sent...maybe because its a 64bit OS...I don't know

Quote:

Originally Posted by Adraco (Post 19788695)
Does your list program need any special services to run?
Maybe that was installed on your machine at first but now maybe that specific service isn't enabled to auto-start?

Can also try the classic ones,
restart the mail server, the IIS and the Exchange storage (if using Exchange setup). Even if they say "started" those can sometimes need a "forced restart" to take care of God know what type of errors.


venus 09-06-2013 08:19 AM

I use icewarp (www.icewarp.com ) there is nothing in the logs about it, even tried blat and it did not send out. thing is, when you do a double optin, it send out the email for you to confirm it but will not send out the list

Quote:

Originally Posted by Babaganoosh (Post 19788899)
What mta are you using? Does it have logs you can review? If mail is going to the same domain but mail is hosted externally, disable mail locally so it will be delivered to the proper location.


baddog 09-06-2013 08:31 AM

Does this mean I am finally opted off your mailing list?

Ferus 09-06-2013 08:46 AM

Check authentication for smtp relay and set up correct spf record at your dns, on the outgoing domain used for sending

venus 09-06-2013 09:26 AM

this was all done long ago

Quote:

Originally Posted by Ferus (Post 19789046)
Check authentication for smtp relay and set up correct spf record at your dns, on the outgoing domain used for sending


itx 09-06-2013 09:37 AM

Maybe the guys of http://serverbuddies.com/ can help with your issue, they're very professional and in the past helped me with very complex server issues.

Ferus 09-06-2013 10:13 AM

Quote:

Originally Posted by venus (Post 19789099)
this was all done long ago

If its for venuscash.com, there is no SPF record

Ferus 09-06-2013 10:32 AM

Try creating a sendmail script, to see if the relay is working.
(source: http://www.paulsadowski.com/wsh/cdo.htm )


-Open a new notepad

-Paste this in:

Code:

Const cdoSendUsingPickup = 1 'Send message using the local SMTP service pickup directory.
 Const cdoSendUsingPort = 2 'Send the message using the network (SMTP over the network).

 Const cdoAnonymous = 0 'Do not authenticate
 Const cdoBasic = 1 'basic (clear-text) authentication
 Const cdoNTLM = 2 'NTLM

 Set objMessage = CreateObject("CDO.Message")
 objMessage.Subject = "Example CDO Message"
 objMessage.From = """YourName"" <[email protected]>"
 objMessage.To = "[email protected]"
 objMessage.TextBody = "This is some sample message text.." & vbCRLF & "It was sent using SMTP authentication."

 '==This section provides the configuration information for the remote SMTP server.

 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/sendusing") = 2

 'Name or IP of Remote SMTP Server
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpserver") = "mail.your.com"

 'Type of authentication, NONE, Basic (Base64 encoded), NTLM
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate") = cdoBasic

'Your UserID on the SMTP server
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/sendusername") = "youruserid"

 'Your password on the SMTP server
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/sendpassword") = "yourpassword"

 'Server port (typically 25)
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpserverport") = 25

 'Use SSL for the connection (False or True)
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpusessl") = False

 'Connection Timeout in seconds (the maximum time CDO will try to establish a connection to the SMTP server)
 objMessage.Configuration.Fields.Item _
 ("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout") = 60

 objMessage.Configuration.Fields.Update

 '==End remote SMTP server configuration section==

 objMessage.Send


- Fill in the name, server, username password ect.


- Save the file as mail.vbs

- Doubleclick and check if it can send mail

venus 09-13-2013 11:44 PM

venuscash does not have a spf record, only my mail domain names vcomm.net and landofvenus.com , both DKIM and spf

Quote:

Originally Posted by Ferus (Post 19789154)
If its for venuscash.com, there is no SPF record


venus 09-13-2013 11:49 PM

thanks ITX, used serverbuddies and they were great..all is working fine now .. I switched my mail stuff from the crappy win 2008 server to a Linux CentOS server and they got everything running perfect..very cheap also

Quote:

Originally Posted by itx (Post 19789110)
Maybe the guys of http://serverbuddies.com/ can help with your issue, they're very professional and in the past helped me with very complex server issues.



All times are GMT -7. The time now is 12:18 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123