|
|
|
推薦Google 應用服務
電腦 |
2007/12/13 16:45
|
|
|
views: 24611 times "Google 應用服務" 真的是個人或是中小企業在管理郵件的福音, 其中整合了Google的相關免費服務,
如何申請?? 條件? 費用?? 請連至--> http://www.google.com/a/help/intl/zh-TW/admins/editions_spe.html
當申請完成後, Google 需要與你所申請(擁有)的網域做認証,確保該domain是申請人所擁有的,其認証方式有二種, 1是由申請頁面下載一個google所隨機產生的檔案,並上傳到所屬網域的網站上即可, 第2種是在DNS設定上加一組Google隨機產生出的host名稱,用CNAME的方式指向google.com. 例: googleffffffff8f8b1d8c.ooy.tw IN CNAME google.com. 通常Google認証會在48小時以內完,小弟申請時大約一個小時左右即已認証完成,相關服務即可使用囉.
標準版(免費) : 基本上可以設定100個所屬網域 User帳戶, 信箱大小比照Gmail的信箱大小.
通訊和連線 |
 |
協同作業和發佈 |
 |
管理您的服務 |
 |
Gmail 每個帳戶擁有 5.691904 GB 儲存空間的電子郵件、郵件搜尋工具、整合性交談功能。 |
|
 |
起始網頁 存取您的收件匣、日曆、文件和團體資訊,外加從同一位置搜尋網頁。 |
|
 |
控制台 線上管理您的網域和使用者帳戶。 |
 |
 |
Google Talk 免費的全球文字和語音電話。 |
|
 |
Google 文件 即時建立、共用文件並在其上協同作業。 |
|
 |
說明和支援 存取包羅萬象的線上知識庫並透過電子郵件支援。 |
 |
 |
Google 日曆 運用可共用的日曆協調會議和其他活動。 |
|
 |
Page Creator (英文版) 輕鬆建立並發佈網頁。 |
|
|
| 專業版: 每個User 每年 50元美金. 可自行比較, 相較於中小企業每年要upgrade 軟硬體及anti-virus,anti-spam,其實是滿划算的.
Gmail 與其他工具的功能就不再多介紹了, 相信有使用過Gmail的用戶,應該對 Gmail,Google talk, Google 日曆等相當的熟悉.
Google 應用服務, 即然將所有的相關服務整合了, 那登入的頁面當然也得整合了, 為了讓使用Google 應用服務更能貼進個人或中小企業的用戶, "起始網頁" 這個項目,可以設定一個易記的網域連結,讓使用者以該連結做為入口網站, 讓企業在管理及使用上方便很多.而易記的入口網域亦只要在DNS上做幾個CNAME設定指向 Google即可
範例: http://gmail.ooy.tw
gmail IN CNAME ghs.google.com.
而因為Mail要交由Google代管, MX 的設定可別忘了設定囉.
IN MX 1 ASPMX.L.GOOGLE.COM. IN MX 5 ALT1.ASPMX.L.GOOGLE.COM. IN MX 5 ALT1.ASPMX.L.GOOGLE.COM. IN MX 10 ASPMX2.GOOGLEMAIL.COM. IN MX 10 ASPMX3.GOOGLEMAIL.COM. IN MX 10 ASPMX4.GOOGLEMAIL.COM. IN MX 10 ASPMX5.GOOGLEMAIL.COM.
|
|
|
| 本日誌引用(傳送)連結 :: http://diary.tw/jerry/trackback/372 |
|
|
|
|
|
在Fedora 6 上安裝 OpenWebMail
電腦 |
2007/08/06 17:13
|
|
|
views: 27452 times
用了好久的Fedora3 最近一個月來,另外安裝了一台Fedora 6,準備取代FC3. FC6 安裝相關套件上感覺較以往簡單方便多了,至少不會要裝一些套件版本東缺西缺的現象. 如果缺什麼就直接打 yum install XXXX,通常都會裝到好.
以下就是裝OpenWebmail 的幾個簡單步驟:
安裝方式亦可參考Openwebmail的說明
1.安裝:
# yum install perl-suidperl perl-Text-Iconv # wget http://www.openwebmail.org/openwebmail/download/redhat/rpm/packages/fc6/openwebmail-2.53-3.i386.rpm # wget http://www.openwebmail.org/openwebmail/download/redhat/rpm/packages/fc6/openwebmail-data-2.53-3.i386.rpm # rpm -Uvh openwebmail-2.53-*.rpm openwebmail-data-2.53-*.rpm
more.. Preparing... ########################################### [100%] package openwebmail-data-2.53-3 is already installed package openwebmail-2.53-3 is already installed
# /var/www/cgi-bin/openwebmail/openwebmail-tool.pl --init
more.. creating db /var/www/cgi-bin/openwebmail/etc/maps/b2g ...done. creating db /var/www/cgi-bin/openwebmail/etc/maps/g2b ...done. creating db /var/www/cgi-bin/openwebmail/etc/maps/lunar ...done. Welcome to the Open WebMail!
This program is going to send a short message back to the developer, so we could have the idea that who is installing and how many sites are using this software, the content to be sent is:
OS: Linux 2.6.20-1.2962.fc6 i686 Perl: 5.008008 WebMail: OpenWebMail 2.53 20070727
2. 設定 Apache 虛擬站台設定如下: (範例:abc.com) # vi /etc/httpd/conf/httpd.conf
more.. <Directory /home/web/webmail> Options -Indexes -FollowSymLinks AllowOverride none Order allow,deny Allow from all </Directory>
scriptAlias /mail /var/www/cgi-bin/openwebmail/openwebmail.pl <Directory "/var/www/cgi-bin/openwebmail/openwebmail.pl"> AllowOverride None Options ExecCGI Order allow,deny Allow from all </Directory>
Alias /data/ /var/www/data/ <Directory "/var/www/data/"> AllowOverride all Options none </Directory>
<VirtualHost *:80> ServerAdmin webadmin@abc.com DocumentRoot /home/web/webmail ServerName webmail.abc.com ErrorLog logs/webmail.abc.com-error_log </VirtualHost>
# vi /home/web/webmail/index.htm ##自動轉址至openwebmail目錄##
more.. <html> <head> <meta http-equiv="refresh" content="0; url=/mail"> </head> </html>
3.設定Openwebmail #vi /var/www/cgi-bin/openwebmail/etc/openwebmail.conf
more.. domainnames abc.com
#多重網域時(以mail.123.com 為例),可將 openwebmail.conf 復制到 /var/www/cgi-bin/openwebmail/etc/site.conf/mail.123.com more.. #cp /var/www/cgi-bin/openwebmail/etc/openwebmail.conf /var/www/cgi-bin/openwebmail/etc/site.conf/mail.123.com 再編輯 mail.123.com 的設定檔即可.
#依不同使用者做不同的設定則可以復制 /var/www/cgi-bin/openwebmail/etc/users.conf/sample 再編輯user的屬性即可,以jerry 為登入使用者作為範例
more.. #cp /var/www/cgi-bin/openwebmail/etc/users.conf/sample /var/www/cgi-bin/openwebmail/etc/users.conf/jerry #vi /var/www/cgi-bin/openwebmail/etc/users.conf/jerry
設定檔內的屬性都很易懂,所以請自行看設定吧.
|
|
|
| 本日誌引用(傳送)連結 :: http://diary.tw/jerry/trackback/264 |
|
|
|
|
| "我的電腦"裡的零零種種鎖雜的事情記錄.
更詳細的資訊,請按右鍵,選擇內容............ |
«
2012/05
»
| 日 |
一 |
二 |
三 |
四 |
五 |
六 |
| |
|
1 |
2 |
3 |
4 |
5 |
| 6 |
7 |
8 |
9 |
10 |
11 |
12 |
| 13 |
14 |
15 |
16 |
17 |
18 |
19 |
| 20 |
21 |
22 |
23 |
24 |
25 |
26 |
| 27 |
28 |
29 |
30 |
31 |
|
|
|
|
Total : 220012
Today : 39
Yesterday : 63 |
|
|