[Vtigercrm-commits] [vtiger-commits] r6491 - /vtigercrm/trunk/modules/Webmails/
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Fri May 26 14:55:58 EDT 2006
Author: mmbrich
Date: Fri May 26 12:55:52 2006
New Revision: 6491
Log:
misc cleanups, licenses added, TODO updated
Removed:
vtigercrm/trunk/modules/Webmails/showOverviewUI.php
vtigercrm/trunk/modules/Webmails/testview.php
Modified:
vtigercrm/trunk/modules/Webmails/CallRelatedList.php
vtigercrm/trunk/modules/Webmails/CustomView.php
vtigercrm/trunk/modules/Webmails/DetailView.php
vtigercrm/trunk/modules/Webmails/EditView.php
vtigercrm/trunk/modules/Webmails/Forms.php
vtigercrm/trunk/modules/Webmails/ListView.php
vtigercrm/trunk/modules/Webmails/MailParse.php
vtigercrm/trunk/modules/Webmails/Save.php
vtigercrm/trunk/modules/Webmails/TODO
vtigercrm/trunk/modules/Webmails/Webmail.php
vtigercrm/trunk/modules/Webmails/WebmailsAjax.php
vtigercrm/trunk/modules/Webmails/body.php
vtigercrm/trunk/modules/Webmails/dlAttachments.php
Modified: vtigercrm/trunk/modules/Webmails/CallRelatedList.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/CallRelatedList.php (original)
+++ vtigercrm/trunk/modules/Webmails/CallRelatedList.php Fri May 26 12:55:52 2006
@@ -1,4 +1,14 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
global $current_user;
require_once('Smarty_setup.php');
require_once('modules/Leads/Lead.php');
Modified: vtigercrm/trunk/modules/Webmails/CustomView.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/CustomView.php (original)
+++ vtigercrm/trunk/modules/Webmails/CustomView.php Fri May 26 12:55:52 2006
@@ -1,4 +1,15 @@
<?
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
+
foreach($_REQUEST as $key=>$value) {
echo $key ."=>".$value."<BR>";
}
Modified: vtigercrm/trunk/modules/Webmails/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/DetailView.php (original)
+++ vtigercrm/trunk/modules/Webmails/DetailView.php Fri May 26 12:55:52 2006
@@ -1,4 +1,15 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
+
global $current_user;
require_once('include/utils/UserInfoUtil.php');
require_once('MailParse.php');
Modified: vtigercrm/trunk/modules/Webmails/EditView.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/EditView.php (original)
+++ vtigercrm/trunk/modules/Webmails/EditView.php Fri May 26 12:55:52 2006
@@ -2,6 +2,16 @@
<form name="Reply" method="POST" action="index.php">
<input type="hidden" name="send_mail">
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
require_once('Smarty_setup.php');
require_once('data/Tracker.php');
require_once('modules/Emails/Email.php');
Modified: vtigercrm/trunk/modules/Webmails/Forms.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/Forms.php (original)
+++ vtigercrm/trunk/modules/Webmails/Forms.php Fri May 26 12:55:52 2006
@@ -1,4 +1,14 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
function get_validate_record_js() {
}
Modified: vtigercrm/trunk/modules/Webmails/ListView.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/ListView.php (original)
+++ vtigercrm/trunk/modules/Webmails/ListView.php Fri May 26 12:55:52 2006
@@ -1,3 +1,15 @@
+<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
+?>
<script language="JavaScript" type="text/javascript" src="include/scriptaculous/prototype.js"></script>
<script language="JavaScript" type="text/javascript" src="include/scriptaculous/scriptaculous.js?load=effects,builder"></script>
<?php
Modified: vtigercrm/trunk/modules/Webmails/MailParse.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/MailParse.php (original)
+++ vtigercrm/trunk/modules/Webmails/MailParse.php Fri May 26 12:55:52 2006
@@ -1,4 +1,14 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
function fullMailList($mbox) {
$mailHeaders = @imap_headers($mbox);
$numEmails = sizeof($mailHeaders);
Modified: vtigercrm/trunk/modules/Webmails/Save.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/Save.php (original)
+++ vtigercrm/trunk/modules/Webmails/Save.php Fri May 26 12:55:52 2006
@@ -1,4 +1,13 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
require_once('modules/Emails/Email.php');
require_once('modules/Webmails/Webmail.php');
Modified: vtigercrm/trunk/modules/Webmails/TODO
==============================================================================
--- vtigercrm/trunk/modules/Webmails/TODO (original)
+++ vtigercrm/trunk/modules/Webmails/TODO Fri May 26 12:55:52 2006
@@ -1,12 +1,12 @@
webmail todos:
--------------
-1) Add attachment uploading code for emails added to vtiger
-2) Create "Add to Vtiger" link to "Quick View" -- Done 01-30-06 -- mmbrich
+1) Add attachment uploading code for emails added to vtiger -- Done 05-25-06 -- mmbrich
+2) Create "Add to Vtiger" link to "Quick View" -- Done 01-30-06 -- mmbrich
3) BCC current_user on all outgoing emails -- Done 01-30-06 -- mmbrich
-4) Automatically import threads on mbox refresh
+4) Automatically import threads on mbox refresh
5) Multiple email accounts
-6) Fix entity relationships so entites will show up in "Emails" module under "More Information"
-7) Store the msg-id of the imported emails (for checking the thread and importing)
+6) Fix entity relationships so entites will show up in "Emails" module under "More Information" -- Done 05-24-06 -- vtiger
+7) Store the msg-id of the imported emails (for checking the thread and importing) -- not needed
8) Add all needed tab relationships to the DB
9) Generate a related list of some kind for webmails -- Done 01-30-06 -- mmbrich
10) Enable the following relationships with an Emails entity:
@@ -16,4 +16,4 @@
d) {Multiple} Other Emails (for thread relationships)
e) ??
11) Enable radio boxes and massdelete funtion
-12) Figure out a way to AJAX'ify checks for new messages and automatically insert them in the table?
+12) Figure out a way to AJAX'ify checks for new messages and automatically insert them in the table? -- Done 05-25-06 -- mmbrich
Modified: vtigercrm/trunk/modules/Webmails/Webmail.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/Webmail.php (original)
+++ vtigercrm/trunk/modules/Webmails/Webmail.php Fri May 26 12:55:52 2006
@@ -1,4 +1,15 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
+
include_once('config.php');
require_once('include/logging.php');
require_once('include/database/PearDatabase.php');
Modified: vtigercrm/trunk/modules/Webmails/WebmailsAjax.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/WebmailsAjax.php (original)
+++ vtigercrm/trunk/modules/Webmails/WebmailsAjax.php Fri May 26 12:55:52 2006
@@ -2,11 +2,11 @@
/*********************************************************************************
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
- * The Original Code is: vtiger CRM Open Source
- * The Initial Developer of the Original Code is vtiger.
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
- *
+ *
********************************************************************************/
session_start();
Modified: vtigercrm/trunk/modules/Webmails/body.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/body.php (original)
+++ vtigercrm/trunk/modules/Webmails/body.php Fri May 26 12:55:52 2006
@@ -1,4 +1,14 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
global $current_user;
require_once('include/utils/utils.php');
require_once('include/utils/UserInfoUtil.php');
Modified: vtigercrm/trunk/modules/Webmails/dlAttachments.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/dlAttachments.php (original)
+++ vtigercrm/trunk/modules/Webmails/dlAttachments.php Fri May 26 12:55:52 2006
@@ -1,4 +1,15 @@
<?php
+/*********************************************************************************
+ ** The contents of this file are subject to the vtiger CRM Public License Version 1.0
+ * ("License"); You may not use this file except in compliance with the License
+ * The Initial Developer of the Original Code is FOSS Labs.
+ * Portions created by FOSS Labs are Copyright (C) FOSS Labs.
+ * Portions created by vtiger are Copyright (C) vtiger.
+ * All Rights Reserved.
+ *
+ ********************************************************************************/
+
+
include('config.php');
require_once('include/utils/UserInfoUtil.php');
require_once('include/utils/utils.php');
More information about the vtigercrm-commits
mailing list