From a2a18e32ead28238997f60ce6dedd43aeeaedada Mon Sep 17 00:00:00 2001 From: mattf Date: Thu, 25 Apr 2013 17:47:39 +0000 Subject: [PATCH] added some notes to the email doc git-svn-id: svn://192.168.202.10@1973 3d104415-ff17-0410-8863-d5cf3c621b8a --- docs/Email_user_manual.txt | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/Email_user_manual.txt b/docs/Email_user_manual.txt index d9bfdcb3..30add077 100644 --- a/docs/Email_user_manual.txt +++ b/docs/Email_user_manual.txt @@ -1,4 +1,4 @@ -EMAIL HANDLING DOC 2012-12-23 +EMAIL HANDLING DOC Started: 2012-12-23 Updated: 2013-04-25 (example of how to set up an email account with Gmail is at the bottom) @@ -226,3 +226,23 @@ software that "sweeps" the email account, which is why IMAP is the preferred protocol. +NOTES: + +- You may need to install gcc, make and associated libraries in order for some perl modules to install properly. To do this on Vicibox or OpenSuSE you can use the software management utility in "yast". +- If you see the following error: + +******************************************************************* +Using the default of SSL_verify_mode of SSL_VERIFY_NONE for client +is depreciated! Please set SSL_verify_mode to SSL_VERIFY_PEER +together with SSL_ca_file|SSL_ca_path for verification. +If you really don't want to verify the certificate and keep the +connection open to Man-In-The-Middle attacks please set +SSL_verify_mode explicitly to SSL_VERIFY_NONE in your application. +******************************************************************* +at /usr/lib/perl5/site_perl/5.12.1/Mail/IMAPClient.pm line 338 + +go into the IMAPClient.pm file at the path above and added the following line +below 338 and the message should go away: + +SSL_verify_mode => 'SSL_VERIFY_NONE', +