Config server Mail Manager :-- *** Installation :-- 1). wget http://configserver.com/free/ Upload the cmm.tgz file to your server 2). Untar the distribution: tar -xzf cmm.tgz 3). cd into the directory created and run the install script: cd cmm/ sh install.sh 4). Login to WHM and scroll to the bottom of the left hand menu and you should see "ConfigServer Mail Manage" ***************************** If you want to uninstall, simply :-- rm -fv /usr/local/cpanel/whostmgr/ rm -fv /usr/local/cpanel/whostmgr/ rm -Rfv /usr/local/cpanel/whostmgr/ ---------------------------- |
Saturday, October 15, 2011
How to Config server Mail Manager
Sunday, September 25, 2011
How to check the mails are blocked by abuse
/// To check the mails which are blocked by abuse link is given below /// :--
-------------------------
http://www.mail-abuse.com/cgi- bin/lookup?ip_address=mke.ck. com
-------------------------
-------------------------
http://www.mail-abuse.com/cgi-
-------------------------
Friday, September 23, 2011
how to change the date
< Simple steps to change the date is given below >:--
------------------------
[root@mybox me]# date
Linux yields the current settings:
[root@mybox me]# Wed Apr 7 12:03:45 EDT 2004
Change the current time and date of the Linux box by entering:
[root@mybox me]# date 040713032004
would change the time and yield:
[root@mybox me]$ Wed Apr 7 13:03:00 EDT 2004
-------------------------------------
Thursday, September 22, 2011
cdosys mail
///*** << cdosys mail >> ***/// :--
----------------------------------
<script language="JavaScript">
<!--
function MM_goToURL() { //v3.0
var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+ args[i+1]+"'");
}
//-->
</script>
<%
Set oMail = Server.CreateObject("CDO. Message")
Set iConf = Server.CreateObject("CDO. Configuration")
Set Flds = iConf.Fields
'Local service (dont change)
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/sendusing") = 2
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/smtpserver") = "localhost"
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/ smtpconnectiontimeout") = 10
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/smtpserverport") = 25
iConf.Fields.Update
Set oMail.Configuration = iConf
oMail.To = "tx.gallery@mb21.co.uk"
oMail.From = "tx.gallery@mb21.co.uk"
oMail.Subject = "Subject: "
oMail.TextBody = "Body: just some message"
oMail.Send
Set iConf = Nothing
Set Flds = Nothing
%>
<script language="JavaScript">
MM_goToURL('parent','http:// mb21.co.uk/');
</script>
-----------------------------------------------------
Sunday, September 18, 2011
Post subject FormMail on Windows server using
//** FormMail on Windows server using 'cdosys' **// :-
----------------------------------------------------------------------
This is a cdosys script same as FormMail script on Linux server. Simply create a file by the name cdosyseg.asp and paste the below given contents in to it. Only make changes to the following fields
oMail.To = "email id"
oMail.From = "email id"
oMail.Subject = "This is a test email from cdosys script"
Note >>: 'cdonts' doesn't work on Windows 2003 server, you have to use cdosys instead.
cdosyseg.asp
*******************-------------------*********** **************
<%
dim HTML,AdvisorFirstName, AdvisorLastName
HTML = HTML & " <html><body>"
HTML = HTML & " <table border=""0"">"
HTML = HTML & " <tr>"
HTML = HTML & " <th bgcolor=""#B0CDDD"">"
HTML = HTML & " <p style=""margin-top:1;margin- bottom:1"" align=""left""> <font face=""arial"" size=""2""> <b> Advisor First Name: </b> </font> </p>"
HTML = HTML & " </th>"
HTML = HTML & " <td bgcolor=""#B0CDDD"">"
HTML = HTML & " <p style=""margin-top:1;margin- bottom:1"" align=""left""> <font face=""arial"" size=""2"">" & Request("AdvisorFirstName") & "</p>"
HTML = HTML & " </td>"
HTML = HTML & " </tr>"
HTML = HTML & " <tr>"
HTML = HTML & " <th bgcolor=""#B0CDDD"">"
HTML = HTML & " <p style=""margin-top:1;margin- bottom:1"" align=""left""> <font face=""arial"" size=""2""> <b> Advisor Last Name: </b> </font> </p>"
HTML = HTML & " </th>"
HTML = HTML & " <td bgcolor=""#B0CDDD"">"
HTML = HTML & " <p style=""margin-top:1;margin- bottom:1"" align=""left""> <font face=""arial"" size=""2"">" & Request("AdvisorLastName") & "</p>"
HTML = HTML & " </td>"
HTML = HTML & " </tr>"
HTML = HTML & " </table>"
HTML = HTML & "<br>"
HTML = HTML & " </body></html>"
'CDOSYS Configuration
Set oMail = Server.CreateObject("CDO. Message")
Set iConf = Server.CreateObject("CDO. Configuration")
Set Flds = iConf.Fields
'Default parameters for Dataflame (dont change)
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/sendusing") = 2
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/smtpserver") = "localhost"
'Note
'Use "localhost" If mail is routed from same server.
'Use Server IP like "203.90.78.221" if Domain has MX record having IP "203.90.78.221" OR Mails are routed from that IP
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/ smtpconnectiontimeout") = 10
iConf.Fields.Item("http:// schemas.microsoft.com/cdo/ configuration/smtpserverport") = 25
iConf.Fields.Update
Set oMail.Configuration = iConf
oMail.To = "supernova_57@hotmail.com"
oMail.From = "supernova_57@hotmail.com"
oMail.Subject = "New Email!"
'If message body is in HTML FORMAT
oMail.BodyPart. ContentTransferEncoding = "quoted-printable"
oMail.HTMLBody = HTML
oMail.Send
Set iConf = Nothing
Set Flds = Nothing
%>
<html>
Message Sent
</html>
*******************-------------------*********** **************
end of cdosyseg.asp
Below is test form, which you can simply copy to a file and rename it as test.html.
You can have the clients form to use the same cdosys script by simply including the cdosys sript path on the action part. Just as :-
<FORM METHOD="POST" action="cdosyseg.asp" onSubmit="" name="Online Registration">
test.html
*******************-------------------*********** **************
<!-- saved from url=(0022)http://internet.e- mail -->
<FORM METHOD="POST" action="cdosyseg.asp" onSubmit="" name="Online Registration">
<P>
Please provide the following contact information:</P>
<BLOCKQUOTE>
<TABLE>
<TR>
<TD ALIGN="right">
<EM><font face="Arial Black">First Name</font></EM></TD>
<TD>
<font face="Arial Black">
<INPUT NAME="AdvisorFirstName" SIZE=53>
</font>
</TD>
</TR>
<TR>
<TD ALIGN="right">
<EM><font face="Arial Black"> Last Name</font></EM></TD>
<TD>
<font face="Arial Black">
<INPUT NAME="AdvisorLastName" SIZE=53>
</font>
</TD>
</TR>
</TABLE>
<input type="submit" name ="SUBMIT" value="SUBMIT" >
</form>*******************-------------------***********
Thursday, September 8, 2011
what is ( Bad Mail )
/ Just follow the steps / :--
C:\Program Files\SWsoft\Plesk\Mail Servers\Mail Enable\Bad Mail
and
C:\Program Files\SWsoft\Plesk\Mail Servers\Mail Enable\Bad Mail\Messages
C:\Program Files\SWsoft\Plesk\Mail Servers\Mail Enable\Queues\SMTP\Outgoing
Wednesday, September 7, 2011
To update awstats for a single domain on windows server
**// To update awstats for a single domain on windows server **//:-
Go to cmd prompt and goto the dir containing the pl file i.e., the following path >>:-
---------------------------------********************
Please run the following command >>:--
perl awstats.pl -config=newplc.com -update
If it gives an error message then go to the following file >>:-
and correct the path of the LogFile.
-----------------------------------********************
Example >>:-
We can get the exact path of the log file from IIS >> Properties >> Web Site >> Properties.
and again run the update command.
Subscribe to:
Comments (Atom)