Monday, March 24, 2014

Sami Durai's invitation is awaiting your response

 
Sami Durai would like to connect on LinkedIn. How would you like to respond?
Sami Durai
Software Engineer at Capsone Software Solutions
Confirm you know Sami
You are receiving Reminder emails for pending invitations. Unsubscribe
© 2014, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA

Tuesday, March 18, 2014

Sami Durai's invitation is awaiting your response

 
Sami Durai would like to connect on LinkedIn. How would you like to respond?
Sami Durai
Software Engineer at Capsone Software Solutions
Confirm you know Sami
You are receiving Reminder emails for pending invitations. Unsubscribe
© 2014, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA

Wednesday, March 12, 2014

Invitation to connect on LinkedIn

 
LinkedIn
 
 
 
 
From Sami Durai
 
Software Eng at Capsone Software Solutions
Chennai Area, India
 
 
 
 
 
 
 

I'd like to add you to my professional network on LinkedIn.

- Sami

 
 
 
 
 
 
 
You are receiving Invitation to Connect emails. Unsubscribe
© 2014, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA
 

Friday, September 3, 2010

Configure Email account in blackberry

1. Select Email Accounts under Services.

2. Add An Email Account.

3. Enter your email address(acer@involver.biz) and enter your exact password.

4. Select Internet Service Provider Email.

5. Select I will provide the settings to add this email account.

6. You will be asked to enter your account settings information

Username=acer@involver.biz and password

7. Then Email server = pop3.involver.biz, Server Type = POP, SSL =No

8. Complete the Email configuration

Exim Command set:

Exim Command set:

1. How to remove How to remove all mails from exim queue?
==================
rm -rf /var/spool/exim/input/*

2. Deleting Frozen Mails:
==================
To remove all frozen mails from the exim queue, use the following command -
exim -bpr | grep frozen | awk {'print $3'} | xargs exim -Mrm
exiqgrep -z -i | xargs exim -Mrm

3. If you want to only delete frozen messages older than a day:
=============================================
exiqgrep -zi -o 86400 | xargs exim -Mrm
where you can change 86400 depending on the time frame you want to keep.( 1 day =
86400 seconds. ).

4. To forcefully deliver mails in queue, use the following exim command:
=====================================================
exim -bpru |awk '{print $3}' | xargs -n 1 -P 40 exim -v -M

To flush the mail queue:
======================
exim -qff
/usr/sbin/exim -qff

To clear spam mails from Exim Queue:
==============================
grep -R -l [SPAM] /var/spool/exim/msglog/*|cut -b26-|xargs exim -Mrm

To clear frozen mails from Exim Queue.
==============================

grep -R -l '*** Frozen' /var/spool/exim/msglog/*|cut -b26-|xargs exim -Mrm


To clear mails from Exim Queue for which recipient cannot not be verified.
=====================================================================
grep -R -l 'The recipient cannot be verified' /var/spool/exim/msglog/*|cut
-b26-|xargs exim -Mrm

To find exim queue details. It will show ( Count Volume Oldest Newest Domain ) details.
=====================================================================

exim -bp |exiqsumm


How to remove root mails from exim queue ?
==================================

When mail queue is high due to root mails, and you only need to remove the root
mails and not any other valid mails.

exim -bp |grep ""|awk '{print $3}'|xargs exim -Mrm

Replace "HOSTNAME" with server hostname


How to remove nobody mails from exim queue ?
==================================
When you need to clear nobody mails, you can use the following command.

exiqgrep -i -f nobody@HOSTNAME | xargs exim -Mrm (Use -f to search the queue for
messages from a specific sender)
exiqgrep -i -r nobody@HOSTNAME | xargs exim -Mrm (Use -r to search the queue for
messages for a specific recipient/domain)

Replace "HOSTNAME" with server hostname

Run a pretend SMTP transaction from the command line, as if it were coming from the
given IP address. This will display Exim's checks, ACLs, and filters as they are
applied. The message will NOT actually be delivered.
===========================

# exim -bh

To see the E-mail accounts passwords in Plesk

To see the problematic email accounts password in Plesk, please follow the steps,

1. Login to the MySQL,

   mysql -uadmin -p`cat /etc/psa/.psa.shadow`

2. Select the database.

   use psa;

3. View the password. 

SELECT accounts.id, mail.mail_name, accounts.password, domains.name FROM domains
LEFT JOIN mail ON domains.id = mail.dom_id LEFT JOIN accounts ON mail.account_id =

Saturday, August 14, 2010

Disaster Recovery -VPS Hardware Nodes( Windows and Linux)


Before starting PIM backup procedure we have to make sure that Service Container #1
is stopped. 
 
 

Windows: 
======== 
 
The scripts are located in "C:\Program Files\SWsoft\Virtuozzo\VZAgent\bin" folder on
x86 system and "C:\Program Files (x86)\SWsoft\Virtuozzo\VZAgent\bin" folder on x64
system. 
 
To back up the PIM installation the following command is used: 
 
# cscript pimBackupData.vbs 
 



To restore the PIM installation, the following command is used: 
 
# cscript pimRestoreData.vbs [--force]  
 
A backup is created in the folder that we have  specify after pimBackupData.vbs as
. To restore the created backup, it is necessary to specify the path
to this folder after pimRestoreData.vbs. 
 
Examples: 
------------- 
 
      - To back up the current PIM configuration into the C:\temp folder: 
 
# cscript pimBackupData.vbs C:\temp\


 - 
 
To restore the PIM configuration previously backed up into the C:\temp folder: 
 
#cscript pimRestoreData.vbs C:\temp 
 
 


Linux: 
==== 
 
 To back up the PIM installation, the following command is used: 
 
# perl /opt/vzagent/bin/pimBackupData  
 
To restore the PIM installation, the following command is used:
 
#perl /opt/vzagent/bin/pimRestoreData [--force] 
 



The backup is being created in the  subfolder of the
 directory (the  subfolder is being automatically
created during the backup creation).

To restore the created backup, you need to specify the full path to the
/ directory after pimRestoreData. 
 
Examples: 
------------ 
 
      - To back up the PIM configuration into the /tmp directory (during the backup
creation, the /tmp/2008-06-27T14-40-00 folder is automatically created): 
 
#perl /opt/vzagent/bin/pimBackupData /tmp/


 - 
 
Assuming that the /tmp/2008-06-27T14-40-00 folder was created when running the
previous command and that this folder is used to store the created backup, you can
restore the PIM configuration as follows: 
 
#perl /opt/vzagent/bin/pimRestoreData /tmp/2008-06-27T144000/