Browse Source

giftnuss:


			
			
				rocklinux
			
			
		
Sebastian Knapp 20 years ago
parent
commit
bf78bca7cb
4 changed files with 85 additions and 8 deletions
  1. +35
    -0
      package/rene/exim/config.hlp
  2. +31
    -0
      package/rene/exim/config.in
  3. +13
    -2
      package/rene/exim/exim.conf
  4. +6
    -6
      package/rene/exim/exim.desc

+ 35
- 0
package/rene/exim/config.hlp

@ -0,0 +1,35 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/rene/exim/config.hlp
# ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
MENU_PKG_EXIM
Because some SMTP-server allow only plain text authentification, you can
configure here the authentification methods for exim.
ROCK_CFG_EXIM_CRAM_MD5
The more secure standard authentification.
ROCK_CFG_EXIM_PLAINTEXT
Authentification without cryptographic technology.
ROCK_CFG_EXIM_SPA
Sorry, no help available for this option.

+ 31
- 0
package/rene/exim/config.in

@ -0,0 +1,31 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/rene/exim/config.in
# ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
if pkgcheck exim X
then
menu_begin MENU_PKG_EXIM 'Exim Options'
bool 'Use MD5 auth' ROCKCFG_PKG_EXIM_CRAM_MD5 1
bool 'Use plain text auth' ROCKCFG_PKG_EXIM_PLAIN_TEXT 0
bool 'SPA authentification' ROCKCFG_PKG_EXIM_SPA 0
menu_end
fi

+ 13
- 2
package/rene/exim/exim.conf

@ -6,7 +6,7 @@
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/rene/exim/exim.conf
# ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
# ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@ -34,11 +34,22 @@ BIN_DIRECTORY=$bindir
CONFIGURE_FILE=$sysconfdir/configure
EXIM_USER=30
EXIM_GROUP=30
AUTH_CRAM_MD5=yes
COMPRESS_COMMAND=/bin/gzip
ZCAT_COMMAND=/bin/zcat
CC=$CC
INCLUDE=-I/usr/include/${ROCKCFG_PKG_BDB_DEFAULT:1}
EOT
if [ "$ROCKCFG_EXIM_CRAM_MD5" = "1" ] ; then
echo "AUTH_CRAM_MD5=yes" >> Local/Makefile
fi
if [ "$ROCKCFG_EXIM_PLAINTEXT" = "1" ] ; then
echo "AUTH_PLAINTEXT=yes" >> Local/Makefile
fi
if [ "$ROCKCFG_EXIM_SPA" = "1" ] ; then
echo "AUTH_SPA=yes" >> Local/Makefile
fi
}
exim_pm(){

+ 6
- 6
package/rene/exim/exim.desc

@ -7,7 +7,7 @@
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/rene/exim/exim.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
[COPY] ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
[COPY]
[COPY] This program is free software; you can redistribute it and/or modify
[COPY] it under the terms of the GNU General Public License as published by
@ -43,12 +43,12 @@
[L] GPL
[S] Stable
[V] 4.22
[P] X -?---5---9 115.700
[V] 4.42
[P] X -?---5---9 115.700
[O] exiscan_version=acl-4.22-12
[O] exiscan_version=acl-4.42-27
[D] 3709896270 exim-4.22.tar.bz2 ftp://ftp.exim.org/pub/exim/exim4/
[D] 2484087580 exiscan-acl-4.22-12.patch.bz2 http://duncanthrax.net/exiscan-acl/
[D] 3915962908 exim-4.42.tar.bz2 ftp://ftp.exim.org/pub/exim/exim4/
[D] 2576318728 exiscan-acl-4.42-27.patch http://duncanthrax.net/exiscan-acl/
[D] X config.samples.tar.bz2 ftp://ftp.exim.org/pub/exim/exim4/

Loading…
Cancel
Save