- Linux-Postfix+Dovecot+Postfixadmin+Roundcubemail 搭建邮件服务器管理系统(二)
jackaroo2020
运维工程师JAVA工程师
安装配置Postfix1、安装验证是否支持cyrusdovecot功能[root@mail~]#postconf-acyrusdovecot若postfix已安装好,则会支持这两个功能,若不支持,表示postfix未安装好;CentOS7开始默认系统自带postfix#安装postfixyum-yinstallpostfix#安装完成还需要替换系统自带的sendmail:rpm-esendmail
- zabbix+postfix邮件告警配置
Seo_sir
一、1.本机若安装sendmail,则必须关闭并卸载。#servicesendmailstop#chkconfigsendmailoff#rpm-esendmail--nodeps2.安装postfix#yuminstallpostfix-y更改postfix配置文件中的参数#postconf-emyhostname=mail.zabbix.example.cn#postconf-emyorigi
- Linux学习-postfix+sasl2配置
丢爸
Linuxlinux
本文基于postfix2.11.11和sasl2postfix的安装详见:postfix安装为postfix开启基于cyrus-sasl的认证功能#验证postfix是否支持cyrus风格的sasl认证,如果输出结果如下,表示支持[root@mail~]#postconf-acyrusdovecot#修改/etc/postfix/main.cf#saslconfigurationbroken_sa
- Postfix 配置参数速查
weixin_33720078
本附录按照字母顺序,列出可在main.cf配置文件里设定的参数,并简略说明各参数的意义或用途。本附录只能算是postfix参数的“速查参考”。所有参数都有一个默认值(虽然某些默认值是空白)。只有实际设定值不同于默认值的参数时,才需要被列在main.cf中。本篇附录虽然列出了参数的默认值,但是不保证新版本的postfix一定不会改变默认值。使用postconf命令的-d选项,可以查出特定参数的默认值
- postfix 启动报错
weixin_34128839
今天在启动postfix的时候,查看centos中的postfix日志more/var/log/maillog,出现了如下报错,Apr2809:04:44PaulV1aliasesdb[23836]:/usr/sbin/postconf:fatal:parameterinet_interfaces:nolocalinterfacefoundfor::1Apr2809:04:45PaulV1alia
- postfix(邮件服务器)安装及配置
Queeys
Lunix
sudoyuminstallpostfixsudosystemctlenablepostfixsudosystemctlstartpostfix启动postfix/usr/sbin/postfixstart停止postfix/usr/sbin/postfixstop检查postfix配置文件/usr/sbin/postfixcheck显示Postfix当前生效的配置信息postconf-n重新读取
- ubuntu postfix安装问题及解决办法
newjueqi
linux
http://hi.baidu.com/truetruelove/blog/item/adf3099711b0f76454fb9653.html从8月22日凌晨1点多熬到早上9点半,终于搞定发信收信。实在郁闷,刚接触postfix,没想到这么麻烦。总结下问题和解决办法.出现各种错误的主要原因:各种目录和文件权限问题,smtp和pop3密码验证,参数配置有误。postconf-m显示postfix安
- postfix安装和简单配置
congsikuai0611
一,安装:[root@station10~]#yuminstall-ypostfix[@more@]二,postconf工具介绍Displaydefaults:postconf-dDisplaycurrentnon-defaultsettings:postconf-nModifymain.cf:postconf-ekey=valueShowsupportedmaptypes:postconf-m三
- postfix+dovecot+sasl搭建
EmptyBottl_520d
tips:relay_domains后面设置的域名会直接转发/投递,不受smtpd_recipient_restrictions等限制项约束yum安装postfix(2.6版本)postconf-n显示修改的配置postconf-d显示默认的配置pstconf-a显示支持的sasl验证方式#/etc/postfix/main.cf配置修改过的#配置sasl验证支持smtpd_sasl_auth_e
- 邮件系统之postfix
TomJames
postfix
postfix:MUA:muttmail(Linux)MailRelay:邮件中继MTA:sendmail,qmail,postfix,eximpostfix:模块化设计postconf-a:服务器端支持的SASL插件类型-e:PARA=VALUEbr/>
[email protected]>
[email protected]邮件地址伪装邮件是需要域的允许使用$+参数引用其它变量的值MRA:cyrus-im
- 详解/etc/postfix下 main.cf 配置文件
feiquan
postconf-n#别名数据库(postalias/newaliases命令生成)alias_database=hash:/etc/postfix/aliases#别名表,列出localmda所使用的别名数据库alias_maps=hash:/etc/postfix/aliases#退回的邮件重新投递的最长时间bounce_queue_lifetime=1d#支持非标准验证规定的行为broken
- postfix 启动报错
归来仍少年
postfix启动报错centos环境
今天在启动postfix的时候,查看centos中的postfix日志more/var/log/maillog,出现了如下报错,Apr2809:04:44PaulV1aliasesdb[23836]:/usr/sbin/postconf:fatal:parameterinet_interfaces:nolocalinterfacefoundfor::1Apr2809:04:45PaulV1alia
- 邮件服务器搭建(postfix+dovecot+foxmail)
刘佳欢--hannah
运维
一、安装postfix系统里一般会有,不用安装没有的(yuminstall-ypostfix)查看安装版本postconf-d|grepmail_version二、修改配置文件配置文件(安装vim命令不安装可以使用的vi)yum-yinstallvim或者vi/etc/postfix/main.cf更改配置文件里的内容myhostname=mail.dmsdbj.commydomain=dmsdb
- postfix 邮件2
AELY木
限制邮件用户发送
######邮件部分######6.限制用户发送1.过滤sender[root@westos-mail~]#postconf-d|grepsender2.hash加密[root@westos-mail~]#postconf-e"smtpd_sender_restrictions=check_sender_accesshash:/etc/postfix/sender"[root@westos-mai
- postfix邮件服务:限制用户发送、接收;出站地址伪装、入站地址转换
Error_404notFound
学习文档
限制用户发送配置[root@westos-mail~]#postconf-e“smtpd_sender_restrictions=check_sender_accesshash:/etc/postfix/sender”[root@westos-mail~]#vim/etc/postfix/
[email protected]##限制
[email protected]用户发
- RHEL7.2配置postfix空客户端
xjsunjie
postfixredhatlinux知识库
1、安装Postfix:# yum update && yum install postfix2、启动服务并启用开机自动启动:# systemctl start postfix# systemctl enable postfix[root@testserver~]#postconf-einet_interfaces=loopback-only[root@testserver~]#postconf-
- Linux之邮件服务
Quberry
MailLinux服务配置
#############################1.限制远程用户vim/etc/postfix/accessipREJECTpostconf-d|grepclient##查看使用参数postfixmap##加密postconf-e"smtpd_client_restrictions=check_client_accesshash:/etc/postfix/access"##写入文件vim
- smtp协议(二)
MissLeejuan
mysql用户权限postfix
####smtp协议(二)####1.权限设置(1)限制主机去发送接受文件[root@mailwestospostfix]#vimaccess172.25.254.9REJECT[root@mailwestospostfix]#postmapaccess[root@mailwestospostfix]#postconf-e"smtpd_client_restrictions=check_clien
- 三.mail 接收权限 dovecot加密通信 php数据库 thunderbird
星仔0
php加密数据库
postconf-d:查看默认设置postconf-n:查看当前设置postconf-e"inet_interfaces=all":修改选项inet_interfaces参数指定postfix系统监听的网络接口。一.邮件的限制==access==##禁止某个ip接受邮件[root@maillinux~]#cd/etc/postfix/[root@maillinuxpostfix]#lsaccess
- SMTP (二)
当当要加油
linuxmail
SMTP(二)telnet远程链接:(谁都可以链接,存在安全隐患)telnet:禁止谁远程链接我的主机发送邮件(任何我主机的用户都不能被链接)vim/etc/postfix/access172.25.254.131REJECTpostmapaccess(生成access.db加密文件)postconf-d|grepclientpostconf-e"smtpd_client_restrictions
- Postfix+dovecot+saslauth
yfshare
postfixDovecotsaslauth
环境:Centos6.4关闭防火墙和selinux[root@localhost ~]# postconf mail_version
mail_version = 2.6.6
[root@localhost ~]#[root@localhost ~]# yum -y install postfix dovecot cyrus* openssl openssl-devel
[root@localho
- Postfix+dovecot+saslauth
yfshare
postfixDovecotsaslauth
环境:Centos6.4关闭防火墙和selinux[root@localhost ~]# postconf mail_version
mail_version = 2.6.6
[root@localhost ~]#[root@localhost ~]# yum -y install postfix dovecot cyrus* openssl openssl-devel
[root@localho
- Postfix+dovecot+saslauth
yfshare
PostfixdovecotsaslauthSystem
环境:Centos6.4关闭防火墙和selinux[root@localhost ~]# postconf mail_versionmail_version = 2.6.6[root@localhost ~]#[root@localhost ~]# yum -y install postfix dovecot cyrus* openssl openssl-devel[root@localhost
- 邮件服务器postfix
centrald
postfix-2.11.3.tar.gzpostfix常用命令查看:postconf-m可以列出可用的插件maketidy清理之前安装的文件(再次安装之前执行)postconf-a支持的认证方式postconfmail_version查看postfix的版本号(不能通过rpm-q查看)makeinstall交互式安装(第一次安装时用)makeupgrade非交互式安装(postfix更新)mka
- 邮件服务的安装及简单应用
jingyetong
style配置文件justify
基本概念电子邮件服务MUA:邮件用户代理MTA:邮件传送代理MDA:邮件投递代理MAA:邮件访问代理Postfix的主配置文件/etc/postfix/main.cfPostconf配置工具Pstconf-d|wc-默认设置Postconf-d|grepinterfacePostconf-d|grepinsterfacl配置默认设置Postconf-e即时写入Mailbox_size_limit=
- 邮件服务的安装及简单应用
jingyetong
style配置文件justify
基本概念电子邮件服务MUA:邮件用户代理MTA:邮件传送代理MDA:邮件投递代理MAA:邮件访问代理Postfix的主配置文件/etc/postfix/main.cfPostconf配置工具Pstconf-d|wc-默认设置Postconf-d|grepinterfacePostconf-d|grepinsterfacl配置默认设置Postconf-e即时写入Mailbox_size_limit=
- 用脚本编写配置文件的更改
maxtree009
配置文件postfix
postfix下的转发配置文件更改#!/bin/bashPOSTCONF='/etc/postfix/main.cf' ##配置文件的位置ret=$(grepsmtp_idns_filter_style$POSTCONF|awk-F'=''{print$2}') 切割出配置文件要更改的部分echo"thecurrentis$ret"BASE=hongkong#Startth
- postfix-tls加密
cunlifang
postfixtls加密
1.开启加密,雷鸟中设置为加密[root@server79~]#postconf-d|grep^smtpd_tls[root@server79~]#postconf -esmtpd_tls_security_level=encrypt(验证时必须走加密)postfixreload[root@server79~]#telnetlocalhost25Trying::1...Connectedtoloc
- postfix-tls加密
cunlifang
postfixtls加密postfix发送邮件
1.开启加密,雷鸟中设置为加密[root@server79~]#postconf-d|grep^smtpd_tls[root@server79~]#postconf-esmtpd_tls_security_level=encrypt(验证时必须走加密)postfixreload[root@server79~]#telnetlocalhost25Trying::1...Connectedtoloca
- postfix升级,加密
cunlifang
加密服务端认证postfix
默认postfix不支持加密,需要升级时添加加密支持postfix升级加密更新:查看postfix服务端的认证类型,未升级之前无显示[root@server79README_FILES]#postconf-a查看postfix客户端的的认证类型,未升级之前无显示[root@server79README_FILES]#postconf-A升级:1.查看postfix-mysql的c语言头文件与库的位
- jdk tomcat 环境变量配置
Array_06
javajdktomcat
Win7 下如何配置java环境变量
1。准备jdk包,win7系统,tomcat安装包(均上网下载即可)
2。进行对jdk的安装,尽量为默认路径(但要记住啊!!以防以后配置用。。。)
3。分别配置高级环境变量。
电脑-->右击属性-->高级环境变量-->环境变量。
分别配置 :
path
&nbs
- Spring调SDK包报java.lang.NoSuchFieldError错误
bijian1013
javaspring
在工作中调另一个系统的SDK包,出现如下java.lang.NoSuchFieldError错误。
org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.l
- LeetCode[位运算] - #136 数组中的单一数
Cwind
java题解位运算LeetCodeAlgorithm
原题链接:#136 Single Number
要求:
给定一个整型数组,其中除了一个元素之外,每个元素都出现两次。找出这个元素
注意:算法的时间复杂度应为O(n),最好不使用额外的内存空间
难度:中等
分析:
题目限定了线性的时间复杂度,同时不使用额外的空间,即要求只遍历数组一遍得出结果。由于异或运算 n XOR n = 0, n XOR 0 = n,故将数组中的每个元素进
- qq登陆界面开发
15700786134
qq
今天我们来开发一个qq登陆界面,首先写一个界面程序,一个界面首先是一个Frame对象,即是一个窗体。然后在这个窗体上放置其他组件。代码如下:
public class First { public void initul(){ jf=ne
- Linux的程序包管理器RPM
被触发
linux
在早期我们使用源代码的方式来安装软件时,都需要先把源程序代码编译成可执行的二进制安装程序,然后进行安装。这就意味着每次安装软件都需要经过预处理-->编译-->汇编-->链接-->生成安装文件--> 安装,这个复杂而艰辛的过程。为简化安装步骤,便于广大用户的安装部署程序,程序提供商就在特定的系统上面编译好相关程序的安装文件并进行打包,提供给大家下载,我们只需要根据自己的
- socket通信遇到EOFException
肆无忌惮_
EOFException
java.io.EOFException
at java.io.ObjectInputStream$PeekInputStream.readFully(ObjectInputStream.java:2281)
at java.io.ObjectInputStream$BlockDataInputStream.readShort(ObjectInputStream.java:
- 基于spring的web项目定时操作
知了ing
javaWeb
废话不多说,直接上代码,很简单 配置一下项目启动就行
1,web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="h
- 树形结构的数据库表Schema设计
矮蛋蛋
schema
原文地址:
http://blog.csdn.net/MONKEY_D_MENG/article/details/6647488
程序设计过程中,我们常常用树形结构来表征某些数据的关联关系,如企业上下级部门、栏目结构、商品分类等等,通常而言,这些树状结构需要借助于数据库完成持久化。然而目前的各种基于关系的数据库,都是以二维表的形式记录存储数据信息,
- maven将jar包和源码一起打包到本地仓库
alleni123
maven
http://stackoverflow.com/questions/4031987/how-to-upload-sources-to-local-maven-repository
<project>
...
<build>
<plugins>
<plugin>
<groupI
- java IO操作 与 File 获取文件或文件夹的大小,可读,等属性!!!
百合不是茶
类 File
File是指文件和目录路径名的抽象表示形式。
1,何为文件:
标准文件(txt doc mp3...)
目录文件(文件夹)
虚拟内存文件
2,File类中有可以创建文件的 createNewFile()方法,在创建新文件的时候需要try{} catch(){}因为可能会抛出异常;也有可以判断文件是否是一个标准文件的方法isFile();这些防抖都
- Spring注入有继承关系的类(2)
bijian1013
javaspring
被注入类的父类有相应的属性,Spring可以直接注入相应的属性,如下所例:1.AClass类
package com.bijian.spring.test4;
public class AClass {
private String a;
private String b;
public String getA() {
retu
- 30岁转型期你能否成为成功人士
bijian1013
成长励志
很多人由于年轻时走了弯路,到了30岁一事无成,这样的例子大有人在。但同样也有一些人,整个职业生涯都发展得很优秀,到了30岁已经成为职场的精英阶层。由于做猎头的原因,我们接触很多30岁左右的经理人,发现他们在职业发展道路上往往有很多致命的问题。在30岁之前,他们的职业生涯表现很优秀,但从30岁到40岁这一段,很多人
- 【Velocity四】Velocity与Java互操作
bit1129
velocity
Velocity出现的目的用于简化基于MVC的web应用开发,用于替代JSP标签技术,那么Velocity如何访问Java代码.本篇继续以Velocity三http://bit1129.iteye.com/blog/2106142中的例子为基础,
POJO
package com.tom.servlets;
public
- 【Hive十一】Hive数据倾斜优化
bit1129
hive
什么是Hive数据倾斜问题
操作:join,group by,count distinct
现象:任务进度长时间维持在99%(或100%),查看任务监控页面,发现只有少量(1个或几个)reduce子任务未完成;查看未完成的子任务,可以看到本地读写数据量积累非常大,通常超过10GB可以认定为发生数据倾斜。
原因:key分布不均匀
倾斜度衡量:平均记录数超过50w且
- 在nginx中集成lua脚本:添加自定义Http头,封IP等
ronin47
nginx lua csrf
Lua是一个可以嵌入到Nginx配置文件中的动态脚本语言,从而可以在Nginx请求处理的任何阶段执行各种Lua代码。刚开始我们只是用Lua 把请求路由到后端服务器,但是它对我们架构的作用超出了我们的预期。下面就讲讲我们所做的工作。 强制搜索引擎只索引mixlr.com
Google把子域名当作完全独立的网站,我们不希望爬虫抓取子域名的页面,降低我们的Page rank。
location /{
- java-3.求子数组的最大和
bylijinnan
java
package beautyOfCoding;
public class MaxSubArraySum {
/**
* 3.求子数组的最大和
题目描述:
输入一个整形数组,数组里有正数也有负数。
数组中连续的一个或多个整数组成一个子数组,每个子数组都有一个和。
求所有子数组的和的最大值。要求时间复杂度为O(n)。
例如输入的数组为1, -2, 3, 10, -4,
- Netty源码学习-FileRegion
bylijinnan
javanetty
今天看org.jboss.netty.example.http.file.HttpStaticFileServerHandler.java
可以直接往channel里面写入一个FileRegion对象,而不需要相应的encoder:
//pipeline(没有诸如“FileRegionEncoder”的handler):
public ChannelPipeline ge
- 使用ZeroClipboard解决跨浏览器复制到剪贴板的问题
cngolon
跨浏览器复制到粘贴板Zero Clipboard
Zero Clipboard的实现原理
Zero Clipboard 利用透明的Flash让其漂浮在复制按钮之上,这样其实点击的不是按钮而是 Flash ,这样将需要的内容传入Flash,再通过Flash的复制功能把传入的内容复制到剪贴板。
Zero Clipboard的安装方法
首先需要下载 Zero Clipboard的压缩包,解压后把文件夹中两个文件:ZeroClipboard.js
- 单例模式
cuishikuan
单例模式
第一种(懒汉,线程不安全):
public class Singleton { 2 private static Singleton instance; 3 pri
- spring+websocket的使用
dalan_123
一、spring配置文件
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.or
- 细节问题:ZEROFILL的用法范围。
dcj3sjt126com
mysql
1、zerofill把月份中的一位数字比如1,2,3等加前导0
mysql> CREATE TABLE t1 (year YEAR(4), month INT(2) UNSIGNED ZEROFILL, -> day
- Android开发10——Activity的跳转与传值
dcj3sjt126com
Android开发
Activity跳转与传值,主要是通过Intent类,Intent的作用是激活组件和附带数据。
一、Activity跳转
方法一Intent intent = new Intent(A.this, B.class); startActivity(intent)
方法二Intent intent = new Intent();intent.setCla
- jdbc 得到表结构、主键
eksliang
jdbc 得到表结构、主键
转自博客:http://blog.csdn.net/ocean1010/article/details/7266042
假设有个con DatabaseMetaData dbmd = con.getMetaData(); rs = dbmd.getColumns(con.getCatalog(), schema, tableName, null); rs.getSt
- Android 应用程序开关GPS
gqdy365
android
要在应用程序中操作GPS开关需要权限:
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
但在配置文件中添加此权限之后会报错,无法再eclipse里面正常编译,怎么办?
1、方法一:将项目放到Android源码中编译;
2、方法二:网上有人说cl
- Windows上调试MapReduce
zhiquanliu
mapreduce
1.下载hadoop2x-eclipse-plugin https://github.com/winghc/hadoop2x-eclipse-plugin.git 把 hadoop2.6.0-eclipse-plugin.jar 放到eclipse plugin 目录中。 2.下载 hadoop2.6_x64_.zip http://dl.iteye.com/topics/download/d2b
- 如何看待一些知名博客推广软文的行为?
justjavac
博客
本文来自我在知乎上的一个回答:http://www.zhihu.com/question/23431810/answer/24588621
互联网上的两种典型心态:
当初求种像条狗,如今撸完嫌人丑
当初搜贴像条犬,如今读完嫌人软
你为啥感觉不舒服呢?
难道非得要作者把自己的劳动成果免费给你用,你才舒服?
就如同 Google 关闭了 Gooled Reader,那是
- sql优化总结
macroli
sql
为了是自己对sql优化有更好的原则性,在这里做一下总结,个人原则如有不对请多多指教。谢谢!
要知道一个简单的sql语句执行效率,就要有查看方式,一遍更好的进行优化。
一、简单的统计语句执行时间
declare @d datetime ---定义一个datetime的变量set @d=getdate() ---获取查询语句开始前的时间select user_id
- Linux Oracle中常遇到的一些问题及命令总结
超声波
oraclelinux
1.linux更改主机名
(1)#hostname oracledb 临时修改主机名
(2) vi /etc/sysconfig/network 修改hostname
(3) vi /etc/hosts 修改IP对应的主机名
2.linux重启oracle实例及监听的各种方法
(注意操作的顺序应该是先监听,后数据库实例)
&nbs
- hive函数大全及使用示例
superlxw1234
hadoophive函数
具体说明及示例参 见附件文档。
文档目录:
目录
一、关系运算: 4
1. 等值比较: = 4
2. 不等值比较: <> 4
3. 小于比较: < 4
4. 小于等于比较: <= 4
5. 大于比较: > 5
6. 大于等于比较: >= 5
7. 空值判断: IS NULL 5
- Spring 4.2新特性-使用@Order调整配置类加载顺序
wiselyman
spring 4
4.1 @Order
Spring 4.2 利用@Order控制配置类的加载顺序
4.2 演示
两个演示bean
package com.wisely.spring4_2.order;
public class Demo1Service {
}
package com.wisely.spring4_2.order;
public class