]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jssource/src_files/modules/InboundEmail/InboundEmail.js
Release 6.1.4
[Github/sugarcrm.git] / jssource / src_files / modules / InboundEmail / InboundEmail.js
1 /*********************************************************************************
2  * SugarCRM is a customer relationship management program developed by
3  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
4  * 
5  * This program is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Affero General Public License version 3 as published by the
7  * Free Software Foundation with the addition of the following permission added
8  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
9  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
10  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
11  * 
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
15  * details.
16  * 
17  * You should have received a copy of the GNU Affero General Public License along with
18  * this program; if not, see http://www.gnu.org/licenses or write to the Free
19  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  * 02110-1301 USA.
21  * 
22  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
23  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
24  * 
25  * The interactive user interfaces in modified source and object code versions
26  * of this program must display Appropriate Legal Notices, as required under
27  * Section 5 of the GNU Affero General Public License version 3.
28  * 
29  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
30  * these Appropriate Legal Notices must retain the display of the "Powered by
31  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
32  * technical reasons, the Appropriate Legal Notices must display the words
33  * "Powered by SugarCRM".
34  ********************************************************************************/
35
36
37 SUGAR.inboundEmail = { };
38
39
40 Rot13 = {
41     map: null,
42
43     convert: function(a) {
44         Rot13.init();
45
46         var s = "";
47         for (i=0; i < a.length; i++) {
48             var b = a.charAt(i);
49             s += ((b>='A' && b<='Z') || (b>='a' && b<='z') ? Rot13.map[b] : b);
50         }
51         return s;
52     },
53
54     init: function() {
55         if (Rot13.map != null)
56             return;
57               
58         var map = new Array();
59         var s   = "abcdefghijklmnopqrstuvwxyz";
60
61         for (i=0; i<s.length; i++)
62             map[s.charAt(i)] = s.charAt((i+13)%26);
63         for (i=0; i<s.length; i++)
64             map[s.charAt(i).toUpperCase()] = s.charAt((i+13)%26).toUpperCase();
65
66         Rot13.map = map;
67     },
68
69     write: function(a) {
70         return Rot13.convert(a);
71     }
72 }
73
74
75 function getEncryptedPassword(login, password, mailbox) {
76         var words = new Array(login, password, mailbox);
77         for(i=0; i<3; i++) {
78                 word = words[i];
79                 if(word.indexOf('&') > 0) {
80                         fragment1 = word.substr(0, word.indexOf('&'));
81                         fragment2 = word.substr(word.indexOf('&') + 1, word.length);
82                         
83                         newWord = fragment1 + '::amp::' + fragment2;
84                         words[i] = newWord;
85                         word = newWord; // setting it locally to pass on to next IF
86                         fragment1 = '';
87                         fragment2 = '';
88                 }
89                 if(word.indexOf('+') > 0) {
90                         fragment1 = word.substr(0, word.indexOf('+'));
91                         fragment2 = word.substr(word.indexOf('+') + 1, word.length);
92                         
93                         newWord = fragment1 + '::plus::' + fragment2;
94                         words[i] = newWord;
95                         word = newWord; // setting it locally to pass on to next IF
96                         fragment1 = '';
97                         fragment2 = '';
98                 }
99                 if(word.indexOf('%') > 0) {
100                         fragment1 = word.substr(0, word.indexOf('%'));
101                         fragment2 = word.substr(word.indexOf('%') + 1, word.length);
102                         
103                         newWord = fragment1 + '::percent::' + fragment2;
104                         words[i] = newWord;
105                         word = newWord; // setting it locally to pass on to next IF
106                         fragment1 = '';
107                         fragment2 = '';
108                 }
109         } // for
110         
111         return words;
112 } // fn
113
114 function ie_test_open_popup_with_submit(module_name, action, pageTarget, width, height, mail_server, protocol, port, login, password, mailbox, ssl, personal, formName)
115 {
116         if (!formName) formName = "testSettingsView";
117         var words = getEncryptedPassword(login, password, mailbox);
118         var isPersonal = (personal) ? 'true' : 'false';
119         
120         if (!isDataValid(formName, true)) {
121                 return;
122         }
123         // launch the popup
124         
125         URL = 'index.php?'
126                 + 'module=' + module_name
127                 + '&to_pdf=1'
128                 + '&action=' + action
129                 + '&target=' + pageTarget
130                 + '&target1=' + pageTarget
131                 + '&server_url=' + mail_server
132                 + '&email_user=' + words[0]
133                 + '&protocol=' + protocol
134                 + '&port=' + port
135                 + '&email_password=' + words[1]
136                 + '&mailbox=' + words[2]
137                 + '&ssl=' + ssl
138                 + '&personal=' + isPersonal;
139                 
140         var SI = SUGAR.inboundEmail;
141         if (!SI.testDlg) {
142                 SI.testDlg = new YAHOO.widget.SimpleDialog("testSettingsDiv", {
143                 width: width + "px",
144                 draggable: true,
145                 dragOnly: true,
146                 close: true,
147                 constraintoviewport: true,
148                         modal: true,
149                         loadingText: SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING")
150             });
151                 SI.testDlg._updateContent = function (o) {
152                 var w = this.cfg.config.width.value + "px"; 
153                 this.setBody(o.responseText);
154                 if (this.evalJS)
155                   SUGAR.util.evalScript(o.responseText);
156                 if (!SUGAR.isIE)
157                     this.body.style.width = w
158             }
159         }
160         var title = SUGAR.language.get('Emails', 'LBL_TEST_SETTINGS');
161         if (typeof(title) == "undefined" || title == "undefined")
162            title = SUGAR.language.get('InboundEmail', 'LBL_TEST_SETTINGS');
163         SI.testDlg.setHeader(title);
164         SI.testDlg.setBody(SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING"));
165         
166     SI.testDlg.render(document.body);
167         var Connect = YAHOO.util.Connect;
168         if (Connect.url) URL = Connect.url + "&" +  url;
169     Connect.asyncRequest("GET", URL, {success:SI.testDlg._updateContent, failure:SI.testDlg.hide, scope:SI.testDlg});
170     SI.testDlg.show();
171         
172 }
173
174 function isDataValid(formName, validateMonitoredFolder) {
175         var formObject = document.getElementById(formName);
176     var errors = new Array();
177     var out = new String();
178         
179     if(trim(formObject.server_url.value) == "") {
180         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_SERVER'));
181     }
182     if(trim(formObject.email_user.value) == "") {
183         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_USER'));
184     }
185     if(trim(formObject.email_password.value) == "") {
186         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_PASSWORD'));
187     }
188     if(formObject.protocol.protocol == "") {
189         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_PROTOCOL'));
190     }
191     if (formObject.protocol.value == 'imap' && validateMonitoredFolder) {
192         if (trim(formObject.mailbox.value) == "") {
193                 errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_MONITORED_FOLDER'));
194         } // if
195     }
196     if(formObject.port.value == "") {
197         errors.push(SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_PORT'));
198     }
199     
200     if(errors.length > 0) {
201         out = SUGAR.language.get('app_strings', 'LBL_EMAIL_ERROR_DESC');
202         for(i=0; i<errors.length; i++) {
203             if(out != "") {
204                 out += "\n";
205             }
206             out += errors[i];
207         }
208
209         alert(out);
210         return false;
211     } else {
212         return true;
213     }
214     
215 } // fn
216
217 function getFoldersListForInboundAccount(module_name, action, pageTarget, width, height, mail_server, protocol, port, login, password, mailbox, ssl, personal, searchFieldValue, formName) {
218         if (!formName) formName = "testSettingsView";
219         
220         var words = getEncryptedPassword(login, password, mailbox);
221         var isPersonal = (personal) ? 'true' : 'false';
222         
223         // launch the popup
224         URL = 'index.php?'
225         + 'module=' + module_name
226         + '&to_pdf=1'
227         + '&action=' + action
228         + '&target=' + pageTarget
229         + '&target1=' + pageTarget
230         + '&server_url=' + mail_server
231         + '&email_user=' + words[0]
232         + '&protocol=' + protocol
233         + '&port=' + port
234         + '&email_password=' + words[1]
235         + '&mailbox=' + words[2]
236         + '&ssl=' + ssl
237         + '&personal=' + isPersonal
238                 + '&searchField='+ searchFieldValue;
239                 
240         var SI = SUGAR.inboundEmail;
241     if (!SI.listDlg) {
242         SI.listDlg = new YAHOO.widget.SimpleDialog("selectFoldersDiv", {
243             width: width + "px",
244             draggable: true,
245             dragOnly: true,
246             close: true,
247             constraintoviewport: true,
248             modal: true,
249             loadingText: SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING")
250         });
251         SI.listDlg._updateContent = function (o) {
252             var w = this.cfg.config.width.value + "px"; 
253             this.setBody(o.responseText);
254             SUGAR.util.evalScript(o.responseText);
255             if (!SUGAR.isIE)
256                 this.body.style.width = w
257         }
258     }
259     SI.listDlg.setHeader(SUGAR.language.get("app_strings", "LBL_EMAIL_LOADING"));
260     SI.listDlg.setBody('');
261     
262     SI.listDlg.render(document.body);
263     var Connect = YAHOO.util.Connect;
264     if (Connect.url) URL = Connect.url + "&" +  url;
265     Connect.asyncRequest("GET", URL, {success:SI.listDlg._updateContent, failure:SI.listDlg.hide, scope:SI.listDlg});
266     SI.listDlg.show();
267         
268 } // fn
269
270 function setPortDefault() {
271         var prot        = document.getElementById('protocol');
272         var ssl         = document.getElementById('ssl');
273         var port        = document.getElementById('port');
274         var stdPorts= new Array("110", "143", "993", "995");
275         var stdBool     = new Boolean(false);
276         
277         if(port.value == '') {
278                 stdBool.value = true;
279         } else {
280                 for(i=0; i<stdPorts.length; i++) {
281                         if(stdPorts[i] == port.value) {
282                                 stdBool.value = true;
283                         }
284                 }
285         }
286         
287         if(stdBool.value == true) {
288                 if(prot.value == 'imap' && ssl.checked == false) { // IMAP
289                         port.value = "143";
290                 } else if(prot.value == 'imap' && ssl.checked == true) { // IMAP-SSL
291                         port.value = '993';
292                 } else if(prot.value == 'pop3' && ssl.checked == false) { // POP3
293                         port.value = '110';
294                 } else if(prot.value == 'pop3' && ssl.checked == true) { // POP3-SSL
295                         port.value = '995';
296                 }
297         }
298 }
299
300 function toggle_monitored_folder(field) {
301
302         var field1=document.getElementById('protocol');
303         //var target=document.getElementById('pop3_warn');
304         //var mark_read = document.getElementById('mark_read');
305         var mailbox = document.getElementById('mailbox');
306         //var inbox = document.getElementById('inbox');
307         var label_inbox = document.getElementById('label_inbox');
308         var subscribeFolderButton = document.getElementById('subscribeFolderButton');
309         var trashFolderRow = document.getElementById('trashFolderRow');
310         var trashFolderRow1 = document.getElementById('trashFolderRow1');
311         var sentFolderRow = document.getElementById('sentFolderRow');
312         
313         if (field1.value == 'imap') {
314                 //target.style.display="none";
315                 mailbox.disabled=false;
316         // This is not supported in IE
317         try {
318           mailbox.style.display = '';
319                   trashFolderRow.style.display = '';
320                   sentFolderRow.style.display = '';
321                   trashFolderRow1.style.display = '';
322                   //mailbox.type='text';
323           subscribeFolderButton.style.display = '';
324         } catch(e) {};
325                 //inbox.style.display='';
326                 label_inbox.style.display='';
327         }
328         else {
329                 //target.style.display="";
330                 mailbox.value = "INBOX";
331         mailbox.disabled=false; // cannot disable, else the value is not passed
332         // This is not supported in IE
333         try {
334                   mailbox.style.display = "none";
335           trashFolderRow.style.display = "none";
336                   sentFolderRow.style.display = "none";
337                   trashFolderRow1.style.display = "none";
338           subscribeFolderButton.style.display = "none";
339           
340                   //mailbox.type='hidden';
341         } catch(e) {};
342        
343                 //inbox.style.display = "";
344                 label_inbox.style.display = "none";
345         }
346 }