2

Is it possible (and how) to add multiple e-mail aliases for a single mail account on JAMES mail server?

I have tried using setalias to create an alias as shown here, but from what I've seen each subsequent call to setalias overrides the previous call and leaves only one.

vgru
  • 1,287
  • 2
  • 17
  • 25

1 Answers1

3

I am doing this with the forward mailet:

<mailet match="RecipientIs=help@kunagi.org" class="Forward">
    <forwardto>support@kunagi.org</forwardto>
</mailet>
Witek
  • 1,433
  • 3
  • 14
  • 16
  • That's it, thanks a lot. I added the mailet as you described to `\apps\james\SAR-INF\config.xml`. I also needed to set `enableForwarding` to `true`, and restarted the JAMES service. – vgru Jul 14 '10 at 13:49