Exim, alias patterns

Ask a Question related to Debian, Design and Development.

  1. #1

    Default Re: Exim, alias patterns

    On Sat, Aug 02, 2003 at 04:13:44PM -0400, David Corbin wrote:
    | Is it possible to configure exim to treat all emails matching a paticular
    | pattern as an alias for particular user? for example: david* -> dcorbin?

    Yes. Create a redirect router (in exim4.conf) with something like the
    following fields :
    domains = +local_domains
    condition = ${if match {$local_part} {\Ndavid.*\N} {1}{0}}
    data = dcorbin

    HTH,
    -D

    --
    Misfortune pursues the sinner,
    but prosperity is the reward for the righteous.
    Proverbs 13:21

    [url]http://dman13.dyndns.org/~dman/[/url]

    -----BEGIN PGP SIGNATURE-----
    Version: GnuPG v1.0.6 (GNU/Linux)
    Comment: For info see [url]http://www.gnupg.org[/url]

    iEYEARECAAYFAj8shL4ACgkQiB6vp1xAVUBJHgCgqBi+HeXxzr TPOYrlrH3fbtyy
    19YAoI16yuHC40PmKVIoLtBgLZ4UQJK9
    =aM3X
    -----END PGP SIGNATURE-----

    Derrick 'dman' Hudson Guest

  2. Similar Questions and Discussions

    1. exim-tls and exim
      webdev:/etc/exim# dpkg --list| grep exim rc exim 3.35-1 An MTA (Mail Transport Agent) ii exim-tls 3.35-3 Exim...
    2. exim daemon !?
      is in exim a daemon like in ssh, apache, etc, or is it only started by inetd & co !?
  3. #2

    Default Re: Exim, alias patterns

    On Saturday 02 August 2003 23:42, Derrick 'dman' Hudson wrote:
    > On Sat, Aug 02, 2003 at 04:13:44PM -0400, David Corbin wrote:
    > | Is it possible to configure exim to treat all emails matching a paticular
    > | pattern as an alias for particular user? for example: david* ->
    > | dcorbin?
    >
    > Yes. Create a redirect router (in exim4.conf) with something like the
    > following fields :
    > domains = +local_domains
    > condition = ${if match {$local_part} {\Ndavid.*\N} {1}{0}}
    > data = dcorbin
    >
    > HTH,
    > -D
    This is a exim4 only feature?

    David


    --
    To UNSUBSCRIBE, email to [email]debian-user-request@lists.debian.org[/email]
    with a subject of "unsubscribe". Trouble? Contact [email]listmaster@lists.debian.org[/email]
    David Corbin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139