码迷,mamicode.com
首页 >  
搜索关键字:linxu sendmail dovecot    ( 943个结果
零基础学习Vim编辑器
**********************************************************************0.这篇教程的简介:Vim是Linux/Unix下的经典编辑程序,它高效且专注,灵活且强大,是Linxu/Unix环境下编程人员、文字排版人员和系统管理员必须掌...
分类:系统相关   时间:2014-12-01 00:36:38    阅读次数:175
PHP中发邮件
测试代码 <?php header('Content-Type: text/xml; charset=utf-8'); require_once('./PHPMailer-master/class.phpmailer.php'); function sendMail() { $mail = new PHPMailer(); //采用SMTP发送邮件 $mail-...
分类:Web程序   时间:2014-11-30 16:56:21    阅读次数:198
laravel常用的功能函数表
MailMail::sendMail::queue //排列一个新邮件发送Mail::later //在n秒后在发送队列中插入一条新邮件Mail::queueon //在给定的队列中排列一个新邮件Mail::pretend() //让mail对象假装发送邮件Mail::lateron...
分类:其他好文   时间:2014-11-27 10:37:16    阅读次数:282
shell 监控判断进程是否存在,如果不存在就重新启动脚本。
#!/bin/bash while [ 1 ] do SendMail_is_exstit=$(ps -ef | grep "feed SendMail" | grep -v grep | wc -l) if [ ${SendMail_is_exstit} == 0 ] then cd /var/www/sdkfeed/ ./app/Console/cake SendMail fi slee...
分类:系统相关   时间:2014-11-26 19:23:57    阅读次数:229
gulp 使用mailgun服务器发送邮件
1、首先你需要创建一个 mailgun 账户,没有请去注册一个。注册之后会有 mailgun 会给你一个默认的子域名,你就可以使用这个子域名去发送邮件了,如下图:2、gulp创建任务:var sendmail = require("gulp-mailgun");// 发送邮件任务gulp.task(...
分类:其他好文   时间:2014-11-21 20:09:19    阅读次数:239
部署Sendmail
简介:如何在Linux环境中配置sendmail,以及出错了如何修复。配置文件1:/etc/hosts127.0.0.1shouldgoonthefirstline.Thefirstentryfor127.0.0.1MUSTbelocalhost.localdomainThelastentryfor127.0.0.1SHOULDbethehostname,ex:srv-etam-cn-web1ThefirstentryfortheinternalIPSHO..
分类:其他好文   时间:2014-11-20 15:35:06    阅读次数:160
PHP Execute Command Bypass Disable_functions
先简单说一下php调用mail()函数的过程。看到源码ext/mail.c236行:char *sendmail_path = INI_STR("sendmail_path");char *sendmail_cmd = NULL;从INI中获得sendmail_path变量。我们看看php.ini里...
分类:Web程序   时间:2014-11-19 23:41:22    阅读次数:347
PHP Execute Command Bypass Disable_functions
先简单说一下php调用mail()函数的过程。 看到源码ext/mail.c236行:char *sendmail_path = INI_STR("sendmail_path");char *sendmail_cmd = NULL;从INI中获得sendmail_path变量。我们看看php.ini...
分类:Web程序   时间:2014-11-18 23:38:29    阅读次数:232
linux postfix+dovecot+lamp+extman+webmail
1.安装lamphttp://blog.chinaunix.net/uid-18962755-id-4173283.html
分类:Web程序   时间:2014-11-18 10:25:29    阅读次数:205
943条   上一页 1 ... 82 83 84 85 86 ... 95 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!