Please feel free to respond, adding issues you've encountered or solutions you've come up with =).
DAILY USE ISSUES
My Inbox is FULL! And I don't want to delete everything just to empty it!
This is a tough one and it called for a feature/bug fix to get "working."
I've implemented a light-weight feature that allows your users to "Archive" (a la, Outlook) emails once they are done with them. If you have a history built up for a given Case, and that Case is closed, your user can (in their "My Inbox" view) select all the relevant emails and press the "Archive" button.
This feature will debut in 4.0.1. (no one more than I like a tidy Inbox - sorry I missed this one!)
Why can't [Sugar] just have a button that checks email when the user wants to?
The philosophy behind this is to minimize the load on your sales/support/etc teams, and have the Inbounds appear auto-magically. This saves them time, and makes Sugar a better investment for your company (of course, this assuming its up and running).
Error in Logs: Fatal: Job Firing pollMonitoredInboxes
Mea culpa! I left that set to "fatal" when developing (so I could tell which jobs were firing when!). I've assigned a bug to myself, and it will be fixed in the next patch release.
If this is really bugging you, you can fix it yourself very easily.
Edit modules/SchedulersJobs/SchedulersJob.php line ~78. Change:
To:PHP Code:$GLOBALS['log']->fatal('----->Updating Job Status and finishing Job execution.');
And in the same file, ~108 change:PHP Code:$GLOBALS['log']->debug('----->Updating Job Status and finishing Job execution.');
To:PHP Code:$GLOBALS['log']->fatal('----->JOB firing '.$func);
:PHP Code:$GLOBALS['log']->debug('----->JOB firing '.$func);
Inbound Email is SLOW!!!!!
There could be hundreds of reasons for this, but among the ones we can address directly:
1. Use IMAP instead of POP3.
2. If using POP3, uncheck "Leave Messages On Server". This switch requires the system to compare every email in the POP3 mailbox to every Inbound in the Sugar system. If you have 1000 saved emails in the mailbox, and you want just the 1 new one, Sugar is forced to dupe check all 1000 emails when polling because POP3 does not allow flags like "Read" or "Seen." It assumes you delete them when you retrieve new mail.
3. Use IMAP instead of POP3.
4. Use IMAP instead of POP3. No really. It's MUCH better.
Issue - reply tracking:
When an email is taken into Sugar, it will initially be assigned with a status of "Unread." If a rep opens it for reading, it will be assigned a status of "Read." If/when the rep actually composes AND sends a reply, the initial email will be assigned as status of "Replied." This functionality will address the unprofessional double reply bit, as well as allow a group of reps to field inbound emails seamlessly.
Issue - multiple emails from multiple addresses:
When setting up I-E for the first time, a "Group User" is created - this user can be thought of as a queue mechanism. If you create more than one I-E instance, they can all map to the initial group user, and transparently queue inbounds from multiple accounts. If your company fields inbounds from accounts like "info@" or "support@", they may all be queued to the single group user, and when replied to by a rep, the outbound will have the from name and from address that you assigned (such as "SugarCRM Support <support@sugarcrm.com>").
Issue - tracking what was said to the [potential} customer:
If the [potential] customer exists in the system, such as when you "Create a Lead" from an inbound email, all in/outbound communication is tracked and linked to that customer - this is done fully automatically . Once that customer exists, the rep can view its communication history by viewing the Lead/Case/Account/Bug detail view and scrolling to the History subpanel. A future item I am currently fleshing out is conversation threading, so you can look forward to that in a subsequent release.


LinkBack URL
About LinkBacks
).



Reply With Quote
Sorry about that.

Bookmarks