当前位置 > 首页

| RSS订阅

性格•能力•态度

05月 16th, 2009 | 暂无评论 | 所属分类:关于我们

 

l  容易,能容则易

l  喧闹时不动心,萧条时不气馁

l  无人理睬时坚定执着,万人艳羡时心如止水

l  聪明人把简单的东西演绎得很复杂,智慧的人则把复杂凝练为简单

l  吃饭吃到饱,喝酒喝到醉,帮人帮到底,干活干到累

l  外来的压力和内心的能量刚好匹配,那就没有压力了

l  暂时的胜利只是一杯提神的咖啡

l  千里马肯定不会死在槽枥之间

l  聪明人在一起,沟通成本极低,话说到半句对方就明白了

l  什么人最累?说慌的人最累,他得花很多力气跟自己较劲

l  最重要的是:只做一件事

l  帮助别人,成就自己

l  不管怎么去做,一切只看结果

l  一定要成为最好,才有机会!

l  看到好东西,就动用拿来主义

l  是做舒服的虫,还是骄傲的友?

l  聪明人在一起,很单纯

l  高手对决,靠能力说话

l  心有多大,舞台就有多宽。能力有多强,路就能走多远

CentOS 5.2下Postfix的安装

03月 4th, 2009 | 1评论 | 所属分类:PHP

CentOS下Postfix的安装
[21CTO版权所有 未经允许不得转载]

CentOS上安装Postfix在网上资料不算很多,还有一些手册有一些问题。
本文将介绍如何在CentOs下安装Posfix的方法,包括发信检验。

1. 使用yum安装。

yum install postfix

2. 将系统的默认的更改为Postfix。

/etc/init.d/sendmail stop
chkconfig –del sendmail

alternatives –config mta

3. main.cf文件设置
vi /etc/postfix/main.cf

# myhostname - 主机名
myhostname = host.example.com

# mydomain - 域名
mydomain = example.com

# myorigin - 发信人定义
# user@example.com 可以为域名 myorigin = $mydomain
# user@host.example.com 也可以使用主机名(二级域) myorigin = $myhostname
myorigin = $mydomain

# inet_interfaces - 设置收信界面
inet_interfaces = all

# mydestination - 发信来源定义
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain

mynetworks_style = subnet

# mynetworks
mynetworks = 127.0.0.0/8

smtpd_banner = $myhostname ESMTP unknown

# 邮件保存地址
home_mailbox = Maildir/

alias_maps = hash:/etc/aliases

// SMTP-Auth设置
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $mydomain
smtpd_recipient_restrictions = permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
broken_sasl_auth_clients = yes

4. SMTP-Auth设置
vi /usr/lib/sasl2/smtpd.conf

pwcheck_method: saslauthd
mech_list: plain login

5. 系统自动启动设置

/etc/init.d/saslauthd start
chkconfig saslauthd on

/etc/init.d/postfix start
chkconfig postfix on

6. 清理yum

yum clean packages

Tags: ,

闲谈中国的技术创业

09月 20th, 2008 | 暂无评论 | 所属分类:关于我们

在中国的技术创业者可能和其它国家特别是美国的技术创业是不同的。在美国,通过一个开源软件,如果扩大即可实现赢利,而在中国,开源远远未达到气候,而自由软件则被人们大多理解为免费或不可靠的东西。

看到wordpress的成功,sugarCrm的成功,Facebook的成功,等等,他们起始也只有一两个人,而在中国,技术者有时候无法逃避生活的压力,还有更多其它的琐事。

或许,不久这种现状能有所改变。

8月24号

08月 25th, 2008 | 暂无评论 | 所属分类:关于我们

昨天我们的奥运圆满结束,看了满天繁花的灿烂,北京的人们又要开始回到往日的生活目标中去,天气也不像前段时间那么热。
通常每年的8月23号左右,都是学校开学的时间,开学的感觉,新鲜有活力,就像这初秋的蓝天。

Tags:

网页抓屏工具

08月 2nd, 2008 | 暂无评论 | 所属分类:PHP

可以使用KHTML来实现:

http://khtml2png.sourceforge.net/