However, with custom modules, Iām not getting the archived email to show on the āHistoryā panel (or anywhere else).
I do get the confirmation that the email was archived successfully.
Iāve also run the repairs in Suitecrm
Could it be associated to using an external email client & not using the email in SuiteCRM?
Or perhaps that I use a typed search term (which finds the record very well) instead of the actual email address. (This is good for allocating correspondence to specific modules).
If I archive to accounts or contacts, it shows in the History panel without issue.
As youāll see on the attachment, Iām using my own module for cases.
I started to have problems with SuiteCRM even trying to look in my sugarCRM database. It worked flawlessly for 2 month until last week and then it starts to hang when i manually try to archive. Iām not given a chance to input anything. I noted that there was a newer version so i went and replaced the old one with the newer one today.
Now with the newer version, it is returning false results when manually searching. When i put in the info for the CRM addin to look, it comes back saying nothing was found in my CRM database. I am testing this on a previous email i know the auto archive worked just fine with the previous version and is archived. I tested with another email. Same erroneous result. I am not sure if the autoarchive works yet with the new version.
it seems that a bug has popped up with the last version and a a newer release was released and its functionality has retrograded to the point itās worthless.
Iād appreciate it if a response can be made about this. There is no suitable sugarCRM 6.5 CE edition plugin for Outlook 2013 beside yours.
The previous version had just about saved my life until the bug came up with manual archiving. I am at my witās end. I am not reverting to Thunderbird where there are many plugins available, Thunderbird has its own set of problems.
Not sure if this has already been reported or not but attachments donāt work properly. They are always ācorruptā. Ie if you attach an image or pdf and then download from suiteCRM, it wonāt view etc. Text files seems ok.
Iām using Outlook 2010 and have the addin settings; āArchive attachments alsoā and Auto Archiving enabled
Thanks for highlighting. If you can provide some screen shots and also check your error logs in windows and post any further details(plug-in version, windows version) etc. that would be great.
The version Iām using of the plugin is 1.1.0.7, Windows 7 32bit, there wasnāt any error logs that were relevant in either windows or suiteCRM. Attached are some screenshots.
To reproduce the problem;
Attach an image to an email and send it to a known contact in suiteCRM so that it automatically archives the email.
Log into suiteCRM and view the contactās history.
When you forward an email, it does not archive to suiteCRM.
When you attempt to manually archive in outlook by selecting the āArchiveā button and search for a contact or account, it always responds with āNo Resultā
Can you point me any log files I can look at for investigation?
I am running v7.2 beta and having issues uploading the zip file which comes up with error below. I have changed the security settings and also unzipped and re-zipped the folder in vain.
ZIP Error(0): Status(9): Arhive(upload://SuiteCRM Outlook Plugin v1.1.0.7.zip): Directory(C:\inetpub\wwwroot\SuiteCRM\cache\upgrades\temp\36E2.tmp)
I am attempting to install this on a Office365 subscription and have found that the Plugin shows up
in the add-ins as inactive. When I try to activate this plugin it states that it
the installed product does not match the installation source and asks me to find an .msi file.
File: ThisAddin.cs
private void Application_ItemSend(object item, ref bool target)
{
try
{
if (item is Outlook.MailItem)
{
Outlook.MailItem objMail = (Outlook.MailItem)item;
// Changed so that even if the mail has been processed in the past, still go ahead and try to archive email.
//
//if (objMail.UserProperties["SuiteCRM"] == null)
//{
ArchiveEmail(objMail, 3, this.settings.ExcludedEmails);
objMail.UserProperties.Add("SuiteCRM", Outlook.OlUserPropertyType.olText, true, Outlook.OlUserPropertyType.olText);
objMail.UserProperties["SuiteCRM"].Value = "True";
objMail.Save();
//}
}
}
Archive search issue:
File: clsGlobals.cs
public static string CreateFormattedPostRequest(string method, object parameters)
{
JsonSerializer serializer = new JsonSerializer();
serializer.Converters.Add(new Newtonsoft.Json.Converters.JavaScriptDateTimeConverter());
serializer.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
serializer.StringEscapeHandling = StringEscapeHandling.EscapeHtml;
StringBuilder buffer = new StringBuilder();
StringWriter swriter = new StringWriter(buffer);
serializer.Serialize(swriter, parameters);
// Fixed issue with searches that should return records that don't
//
string rest_data = System.Web.HttpUtility.UrlEncode(buffer.ToString());
string ret = "method=" + method
ret += "&input_type=JSON&response_type=JSON&rest_data=" + rest_data;
return ret;
}
I was able to fix the corrupted files fix on the server in PHP but it looks like the other two fixes are to be made to the plugin code itself, correct?
For the Archive search issue:
I accessed the latest version of the Outlook plugin code from github and found the clsGlobals,cs file but did not see any reference in that file of CreateFormattedPostRequest.
Can you give me more information on how to make this change?
Thanks,
Dianna