ubuntu-14.04 – opendkim配置未正确加载

前端之家收集整理的这篇文章主要介绍了ubuntu-14.04 – opendkim配置未正确加载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当从Ubuntu 12.04移动到14.04时,opendkim不再以我之前使用的相同配置启动.我在/ etc / default / opendkim中的任何项目在启动时都显示为“未找到”.
  1. /etc/init.d/opendkim: 6: /etc/default/opendkim: Syslog: not found
  2. /etc/init.d/opendkim: 9: /etc/default/opendkim: UMask: not found
  3. /etc/init.d/opendkim: 13: /etc/default/opendkim: Domain: not found
  4. /etc/init.d/opendkim: 14: /etc/default/opendkim: KeyFile: not found
  5. /etc/init.d/opendkim: 15: /etc/default/opendkim: Selector: not found
  6. /etc/init.d/opendkim: 28: /etc/default/opendkim: OversignHeaders: not found

我无法在互联网中的任何地方找到这个问题,它确实没有多大意义.为什么“Syslog yes”会抛出错误?那是非常标准的东西.

对于masegaloeh,opendkim:OpenDKIM Filter v2.9.1

等/默认/ opendkim:

  1. Syslog yes
  2. UMask 002
  3. Domain mydomain.com
  4. KeyFile /etc/mail/dkim.key
  5. Selector postfix
  6. OversignHeaders From

/etc/init.d/opendkim:

  1. PATH=/sbin:/bin:/usr/sbin:/usr/bin
  2. DAEMON=/usr/sbin/opendkim
  3. NAME=opendkim
  4. DESC="OpenDKIM"
  5. RUNDIR=/var/run/$NAME
  6. USER=opendkim
  7. GROUP=opendkim
  8. SOCKET=local:$RUNDIR/$NAME.sock
  9. PIDFILE=$RUNDIR/$NAME.pid
  10.  
  11. # How long to wait for the process to die on stop/restart
  12. stoptimeout=5
  13.  
  14. test -x $DAEMON || exit 0
  15.  
  16. # Include LSB provided init functions
  17. . /lib/lsb/init-functions
  18.  
  19. # Include opendkim defaults if available
  20. if [ -f /etc/default/opendkim ] ; then
  21. . /etc/default/opendkim
  22. fi
  23.  
  24. if [ -f /etc/opendkim.conf ]; then
  25. CONFIG_SOCKET=`awk '$1 == "Socket" { print $2 }' /etc/opendkim.conf`
  26. fi
  27.  
  28. # This can be set via Socket option in config file,so it's not required
  29. if [ -n "$SOCKET" -a -z "$CONFIG_SOCKET" ]; then
  30. DAEMON_OPTS="-p $SOCKET $DAEMON_OPTS"
  31. fi
  32.  
  33. DAEMON_OPTS="-x /etc/opendkim.conf -u $USER -P $PIDFILE $DAEMON_OPTS"
  34.  
  35. start() {
  36. # Create the run directory if it doesn't exist
  37. if [ ! -d "$RUNDIR" ]; then
  38. install -o "$USER" -g "$GROUP" -m 755 -d "$RUNDIR" || return 2
  39. [ -x /sbin/restorecon ] && /sbin/restorecon "$RUNDIR"
  40. fi
  41. # Clean up stale sockets
  42. if [ -f "$PIDFILE" ]; then
  43. pid=`cat $PIDFILE`
  44. if ! ps -C "$DAEMON" -s "$pid" >/dev/null; then
  45. rm "$PIDFILE"
  46. TMPSOCKET=""
  47. if [ -n "$SOCKET" ]; then
  48. TMPSOCKET="$SOCKET"
  49. elif [ -n "$CONFIG_SOCKET" ]; then
  50. TMPSOCKET="$CONFIG_SOCKET"
  51. fi
  52. if [ -n "$TMPSOCKET" ]; then
  53. # UNIX sockets may be specified with or without the
  54. # local: prefix; handle both
  55. t=`echo $SOCKET | cut -d: -f1`
  56. s=`echo $SOCKET | cut -d: -f2`
  57. if [ -e "$s" -a -S "$s" ]; then
  58. if [ "$t" = "$s" -o "$t" = "local" ]; then
  59. rm "$s"
  60. fi
  61. fi
  62. fi
  63. fi
  64. fi
  65. start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" --test -- $DAEMON_OPTS || return 1
  66. start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" -- $DAEMON_OPTS || return 2
  67. # Detect exit status 78 (configuration error)
  68. ret=$?
  69. if [ $ret -eq 78 ]; then
  70. echo "See /usr/share/doc/opendkim/README.Debian for help"
  71. echo "Starting for DKIM verification only"
  72. DAEMON_OPTS="-b v $DAEMON_OPTS"
  73. start-stop-daemon --start --quiet --pidfile "$PIDFILE" --exec "$DAEMON" -- $DAEMON_OPTS
  74. exit 0
  75. elif [ $ret -ne 0 ]; then
  76. exit $ret
  77. fi
  78. }
  79.  
  80. stop() {
  81. start-stop-daemon --stop --retry "$stoptimeout" --exec "$DAEMON"
  82. }
  83.  
  84. reload() {
  85. start-stop-daemon --stop --signal USR1 --exec "$DAEMON"
  86. }
  87.  
  88. status() {
  89. local pidfile daemon name status
  90.  
  91. pidfile=
  92. OPTIND=1
  93. while getopts p: opt ; do
  94. case "$opt" in
  95. p) pidfile="$OPTARG";;
  96. esac
  97. done
  98. shift $(($OPTIND - 1))
  99.  
  100. if [ -n "$pidfile" ]; then
  101. pidfile="-p $pidfile"
  102. fi
  103. daemon="$1"
  104. name="$2"
  105.  
  106. status="0"
  107. pidofproc $pidfile $daemon >/dev/null || status="$?"
  108. if [ "$status" = 0 ]; then
  109. log_success_msg "$name is running"
  110. return 0
  111. else
  112. log_failure_msg "$name is not running"
  113. return $status
  114. fi
  115. }
  116.  
  117. case "$1" in
  118. start)
  119. echo -n "Starting $DESC: "
  120. start
  121. echo "$NAME."
  122. ;;
  123. stop)
  124. echo -n "Stopping $DESC: "
  125. stop
  126. echo "$NAME."
  127. ;;
  128. restart)
  129. echo -n "Restarting $DESC: "
  130. stop
  131. start
  132. echo "$NAME."
  133. ;;
  134. reload|force-reload)
  135. echo -n "Restarting $DESC: "
  136. reload
  137. echo "$NAME."
  138. ;;
  139. status)
  140. status $DAEMON $NAME
  141. ;;
  142. *)
  143. N=/etc/init.d/$NAME
  144. echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2
  145. exit 1
  146. ;;
  147. esac
  148.  
  149. exit 0
Ubuntu Community Wiki开始,OpenDKIM使用两个文件进行配置:

> / etc / default / opendkim:它控制opendkim二进制参数如何.请参见此处的手册页.这个文件DAEMON_OPTS和SOCKET的两个重要参数.见man 8 opendkim
> /etc/opendkim.conf:运行时由opendkim二进制文件读取的主配置文件.见man 5 opendkim.conf

/ etc / default / opendkim文件内容应该放在/etc/opendkim.conf中.您应该只在/ etc / default / opendkim中配置套接字和其他二进制参数.

仅供参考,未找到Line-X上方的错误消息由/etc/init.d/opendkim投掷,尤其是此行

  1. . /etc/default/opendkim

Space-after-dot syntax was shortcut for source in shell. / etc / default / opendkim不是用于分配变量的有效shell脚本.因此,init脚本尝试执行但它失败,因为它无法找到二进制文件.

猜你在找的Ubuntu相关文章