[ 
https://issues.apache.org/jira/browse/JAMES-2564?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16898762#comment-16898762
 ] 

Tellier Benoit commented on JAMES-2564:
---------------------------------------

Using webadmin we can now add regex mappings 
https://github.com/linagora/james-project/pull/2526

> WebAdmin: Mappings 'address + regex' support
> --------------------------------------------
>
>                 Key: JAMES-2564
>                 URL: https://issues.apache.org/jira/browse/JAMES-2564
>             Project: James Server
>          Issue Type: New Feature
>          Components: data, webadmin
>            Reporter: Tellier Benoit
>            Priority: Major
>              Labels: feature
>
> In an effort to drop the CLI completly in Guice products, we need to support 
> all features of the CLI in the webAdmin alternative.
> Currently, one of the features missing are related to "mappings".
> We would like to implement them on top of webadmin.
> Create routes for:
>  - Reading, adding and removing address mappings
>  - Reading, adding and removing regex mappings
>  - List all mappings
> Here is a _suggestion_ of APIs:
>  - Address mapping
> ```
> GET /mappings/address/[email protected]
> 200
> [
>    { "toAddress": "[email protected]"},
>    ...
> ]
> PUT /mappings/address/[email protected]
> With body { "toAddress": "[email protected]"}
> Will add the mapping
> DELETE /mappings/address/[email protected]
> With body { "toAddress": "[email protected]"}
> Will remove the mapping
> ```
> Regarding regex mapping:
> ```
> GET /mappings/regex/fromDomain.tld
> 200
> [
>    { "expression": "prefix_(.*)@test:admin@${1}"},
>    ...
> ]
> PUT /mappings/regex/fromDomain.tld
> With body {"expression": "prefix_(.*)@test:admin@${1}"}
> Will add the mapping
> DELETE /mappings/regex/fromDomain.tld
> With body {"expression": "prefix_(.*)@test:admin@${1}"}
> Will remove the mapping
> ```
> Regarding listing mappings:
> ```
> GET /mappings
> [
>    {
>       "type": "Domain",  // One of Domain, Address, Regex, Group, Forward, 
> Error
>        "source": {
>             "fixedUser": "*",
>             "fixedDomain": "domain.tld"
>        },
>        "mapping" : "newDomain.tld"
>     }, ...
> ]
> ```
> Open separate pull requests for each sets of routes.
> We do stay at your full disposal on Gitter to answer related questions 
> (https://gitter.im/apache/james-project)



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to