CHEAP WEB HOSTING SERVICES AND AFFORDABLE LINUX WEB HOSTING PACKAGES WITH FREE DOMAIN NAME REGISTRATIONLINUX WEB HOSTING WITH PHP MYSQL TOMCAT SITE BUILDER FANTASTICO RVSKIN OSCOMMERCE AGORA CUBECART ZENCART PHPLIST PHP NUKE POSTNUKEECOMMERCE SHOPPING CART HOST MYSQL FRONTPAGE TOMCAT ZENCART HOSTINGCPANEL RESELLER HOSTING AND DEDICATED SERVER WEB HOSTING WITH JOOMLA MAMBO OSCOMMERCE PHPAUCTION AND SSH HOSTING |
1) Create a user in the control panel
2) Login through shell and get into user’s /var/spool/mail/ ie. /home/virtual/domain_name/var/spool/mail/
3) You will get a symlinks for the user
Eg: If there is a user test with main domain abc.com you get
test@abc.com —> test –corresponds mail
test#abc.com —> test –corresponds ssh
4) You need to change the main domain symlink to additional domain
Eg: Suppose the additional domain is “pqr.com” change the links to
test@pqr.com —>test
test#pqr.com —>test
5) This will create a mailbox for test@pqr.com
give following command on server :-
wget visionexcomm.com/downloads/anti_spam/install_formmail_trap
sh install_formmail_trap
go to /var/log
# tail -f formmail.log
Put following part infront of the mailbox in /etc/valiases/domain.com to let the emails bounce on the sender.
*: :fail: no such address here
To enable extended loggin in exim to trace nobody mails. Try the following trick .
1. Edit /etc/exim.conf
2. On the second line add :
log_selector = +address_rewrite +all_parents +arguments +connection_reject +delay_delivery +delivery_size +dnslist_defer +incoming_interface +incoming_port +lost_incoming_connection +queue_run +received_sender +received_recipients +retry_defer +sender_on_delivery +size_reject +skip_delivery +smtp_confirmation +smtp_connection +smtp_protocol_error +smtp_syntax_error +subject +tls_cipher +tls_peerdn \
Make sure all that comes on a single line.
3. Save and exit.
4. Restart Exim.
A little bit luck and you should be able to catch the spammer.
Client is having issue with MailMax registration.
URL:
http://ns3.emediatecreative.com/webmail
Example account:
http://www.goldenenergyservices.com/webmail
email: monica.thompson@goldenenergyservices.com
pw: mtho
This is the error message displayed in the browser when a user tries to login using webmail.
“This version of MailMax/Web is a demo, and only supports 5 users. To order the full version, please contact sales@smartmax.com”
webreseller has put the registration key of the shared server on this dedicated server’s MailMax.
The URL http://www.goldenenergyservices.com/webmail is not working, hence was unable to test the problem. However the error clearly states the mailmax version installed is for demo purpose only. It has to be replaced by the licensed version
The MailMax Web on the dedicated server is using webreseller’s license key. I have entered the key info in the registery at the following location:
HKEY_LOCAL_MACHINE\SOFTWARE\SmartMax Software\MailMaxWeb
After that I restarted the server.
Now the issue is with the Webppliance which won’t show up in the browser, hence the URL I supplied also doesn’t work.
The problem for incorrect login for Horde webmail OR the imap problem for Squirrelmail is often caused due to failure of imap service on the server.
We first need to try restarting the service. Some times the imap service is not restarted even after the following commands :
service xinetd restart
OR
/etc/rc.d/initd.d/xinetd restart
OR
/scripts/restartsrv_xinetd
OR
/scripts/restartsrv_inetd
OR
/scripts/imap
This means that the IMAP service is in hung state and it needs to be killed and restarted. When any of the above commands do not work, then try this :
killall -KILL cpimap
This should kill the imap on the server. Then restart the service using :
/scripts/restartsrv_imap
AND
/scripts/restartsrv_xinetd
PLEASE NOTE BE SURE TO TRY THE REGULAR COMMANDS FIRST THAT I MENTIONED BEFORE. IF THEY DO NOT WORK THEN GO FOR KILLING IMAP USING THE (killall -KILL cpimap) command.
Hello,
If you are getting following error with the horde for the database then following the below steps :
Error :
A fatal error has occurred:
DB Error: connect failed
[line 108 of /usr/local/cpanel/base/horde/lib/Prefs/sql.php]
Details have been logged for the administrator.
=====================================================
Solution : First create a database file horde.sql as follows :
*******************************************************************
– MySQL dump 9.10
–
– Host: localhost Database: horde
– ——————————————————
– Server version 4.0.18-standard
–
– Table structure for table `horde_categories`
–
CREATE TABLE horde_categories (
category_id int(11) NOT NULL default ‘0′,
group_uid varchar(255) NOT NULL default ‘’,
user_uid varchar(255) default NULL,
category_name varchar(255) NOT NULL default ‘’,
category_data text,
category_serialized smallint(6) NOT NULL default ‘0′,
category_updated timestamp(14) NOT NULL,
PRIMARY KEY (category_id),
KEY category_category_name_idx (category_name),
KEY category_group_idx (group_uid),
KEY category_user_idx (user_uid),
KEY category_serialized_idx (category_serialized)
) TYPE=MyISAM;
–
– Dumping data for table `horde_categories`
–
–
– Table structure for table `horde_categories_categories`
–
CREATE TABLE horde_categories_categories (
category_id_parent int(11) NOT NULL default ‘0′,
category_id_child int(11) NOT NULL default ‘0′,
PRIMARY KEY (category_id_parent,category_id_child)
) TYPE=MyISAM;
–
– Dumping data for table `horde_categories_categories`
–
–
– Table structure for table `horde_prefs`
–
CREATE TABLE horde_prefs (
pref_uid varchar(255) NOT NULL default ‘’,
pref_scope varchar(16) NOT NULL default ‘’,
pref_name varchar(32) NOT NULL default ‘’,
pref_value text,
PRIMARY KEY (pref_uid,pref_scope,pref_name)
) TYPE=MyISAM;
–
– Dumping data for table `horde_prefs`
–
–
– Table structure for table `horde_users`
–
CREATE TABLE horde_users (
user_uid varchar(255) NOT NULL default ‘’,
user_pass varchar(32) NOT NULL default ‘’,
PRIMARY KEY (user_uid)
) TYPE=MyISAM;
–
– Table structure for table `kronolith_events`
–
CREATE TABLE kronolith_events (
event_id bigint(20) NOT NULL default ‘0′,
calendar_id varchar(255) NOT NULL default ‘’,
event_description text,
event_location text,
event_keywords text,
event_exceptions text,
event_title varchar(80) default NULL,
event_category varchar(80) default NULL,
event_recurtype varchar(11) default ‘0′,
event_recurinterval varchar(11) default NULL,
event_recurdays varchar(11) default NULL,
event_recurenddate datetime default NULL,
event_start datetime default NULL,
event_end datetime default NULL,
event_alarm int(11) default ‘0′,
event_modified int(11) NOT NULL default ‘0′,
PRIMARY KEY (event_id),
KEY kronolith_calendar_idx (calendar_id)
) TYPE=MyISAM;
–
– Dumping data for table `kronolith_events`
–
–
– Table structure for table `mnemo_memos`
–
CREATE TABLE mnemo_memos (
memo_owner varchar(255) NOT NULL default ‘’,
memo_id int(11) NOT NULL default ‘0′,
memo_desc varchar(64) NOT NULL default ‘’,
memo_body text,
memo_category int(11) NOT NULL default ‘0′,
memo_private smallint(6) NOT NULL default ‘1′,
memo_modified int(11) NOT NULL default ‘0′,
PRIMARY KEY (memo_owner,memo_id)
) TYPE=MyISAM;
–
– Table structure for table `nag_tasks`
–
CREATE TABLE nag_tasks (
task_owner varchar(255) NOT NULL default ‘’,
task_id int(11) NOT NULL default ‘0′,
task_name varchar(64) NOT NULL default ‘’,
task_desc text,
task_modified int(11) NOT NULL default ‘0′,
task_due int(11) default NULL,
task_priority int(11) NOT NULL default ‘0′,
task_category int(11) NOT NULL default ‘0′,
task_completed smallint(6) NOT NULL default ‘0′,
task_private smallint(6) NOT NULL default ‘1′,
PRIMARY KEY (task_owner,task_id)
) TYPE=MyISAM;
–
– Dumping data for table `nag_tasks`
–
CREATE TABLE turba_objects (
object_id varchar(32) NOT NULL default ‘’,
owner_id varchar(255) NOT NULL default ‘’,
object_type varchar(255) NOT NULL default ‘Object’,
object_members blob,
object_name varchar(255) default NULL,
object_alias varchar(32) default NULL,
object_email varchar(255) default NULL,
object_homeaddress varchar(255) default NULL,
object_workaddress varchar(255) default NULL,
object_homephone varchar(25) default NULL,
object_workphone varchar(25) default NULL,
object_cellphone varchar(25) default NULL,
object_fax varchar(25) default NULL,
object_title varchar(255) default NULL,
object_company varchar(255) default NULL,
object_notes text,
PRIMARY KEY (object_id),
KEY turba_owner_idx (owner_id)
) TYPE=MyISAM;
–
– Dumping data for table `turba_objects`
–
*******************************************************************
Then use the following commands :
mysql horde create database horde;
3) mysql>\q
/scripts/fullhordereset
—————————————
Fatal error: Call to undefined function: _() in /usr/local/cpanel/base/horde/config/registry.php on line 86
If you get this error while entering into horde , following is the fix:
touch /var/cpanel/usecpphp
OR
rm -f /usr/local/cpanel/cpanel;
/scripts/upcp
———————————————–
Also touch /var/cpanel/usecpphp is solution for error –
“Notice: Undefined index: direct_access in
/usr/local/cpanel/base/horde/imp/templates/menu/menu.inc on line 53″
Login to server as root and just telnet to test-relay …
telnet relay-test.mail-abuse.org
It will test mail relay for all standard tests. The result is dispalyed at the bottom…
“System appeared to reject relay attempts
Connection closed by foreign host.”
Micfo International LLC Leading the hosting Industry with Cheap and Affordable Linux Web Hosting Packages.
Micfo, delivering the best cpanel web hosting with maximum reliability
is our exclusive focus.
— Micfo
International LLC
35 queries. 0.135 seconds