Jun 152016
 

Add some useful external repositories to install useful third party software packages.

  • install a plugin to add priorities to each installed repositories.
# yum -y install yum-plugin-priorities

set priority=1 to official repository

# sed -i -e "s/\]$/\]\npriority=1/g" /etc/yum.repos.d/CentOS-Base.repo
  • Add EPEL Repository which is provided from Fedora project.
# yum -y install epel-release

set priority=5

# sed -i -e "s/\]$/\]\npriority=5/g" /etc/yum.repos.d/epel.repo

change to enabled=0 and use it only when needed

# sed -i -e "s/enabled=1/enabled=0/g" /etc/yum.repos.d/epel.repo

if enabled=0, input a command to use the repository

# yum --enablerepo=epel install [Package]
  • Add RPMforge Repository which provides many useful packages.
# yum -y install http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el7.rf.x86_64.rpm

Download and install DAG’s GPG key for your system.

# wget http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt
# rpm --import RPM-GPG-KEY.dag.txt

set priority=10

# sed -i -e "s/\]$/\]\npriority=10/g" /etc/yum.repos.d/rpmforge.repo

change to enabled=0 and use it only when needed

# sed -i -e "s/enabled = 1/enabled = 0/g" /etc/yum.repos.d/rpmforge.repo

if enabled=0, input a command to use the repository

# yum --enablerepo=rpmforge install [Package]
Jun 212011
 

postfix-2.8.4-RC1

[download#35]

HISTORY

  • 20110420

Performance: a high load of DSN success notification requests could slow down the queue manager. Solution: make the trace client asynchronous, just like the bounce and defer clients. Problem reported by Eduardo M. Stelmaszczyk of terra.com.br. Files: global/abounce.[hc], *qmgr/qmgr_active.c (the qmgr_active.c files are identical).

  • 20110418

Bugfix (introduced Postfix 2.3 and Postfix 2.7): the Milter client reported some “file too large” errors as temporary errors. Problem reported by Michael Tokarev. Files: milter/milter8.c, cleanup/cleanup_milter.c.

  • 20110426

Bugfix (introduced in Postfix 1.1, duplicated in Postfix 2.3, unrelated mistake in Postfix 2.7): the local(8) delivery agent ignored table lookup errors in mailbox_command_maps, mailbox_transport_maps, fallback_transport_maps and (while bouncing mail to alias) alias owner lookup. Problem reported by William Ono. Files: local/command.c, local/mailbox.c, local/unknown.c, local/bounce_workaround.c.

  • 20110601

Bugfix (introduced Postfix 2.6 with master_service_disable) loop control error when parsing a malformed master.cf file. Found by Coverity. File: master/master_ent.c.

  • 20110602

Bugfix (introduced: Postfix 2.7): “sendmail -t” reported “protocol error” after queue file write error. File: postdrop/postdrop.c.

  • 20110614

Linux kernel version 3 support. Linus Torvalds has reset the counters for reasons not related to changes in code. Files: makedefs, util/sys_defs.h.

  • 20110615

Workaround: some Spamhaus RHSBL rejects lookups with “No IP queries” even if the name has an alphanumerical prefix. We play safe, and skip both RHSBL and RHSWL queries for names ending in a numerical suffix. File: smtpd/smtpd_check.c.