1
0
mirror of https://github.com/directorz/mailfull-go.git synced 2025-12-17 09:37:02 +00:00

Implement create/update/remove a AliasUser

This commit is contained in:
teru
2016-08-10 19:45:03 +09:00
parent 5593025c55
commit a7602a3180
2 changed files with 107 additions and 0 deletions

View File

@@ -29,6 +29,7 @@ var (
ErrUserAlreadyExist = errors.New("User: already exist")
ErrUserIsCatchAllUser = errors.New("User: is set as catchall")
ErrAliasUserNotExist = errors.New("AliasUser: not exist")
ErrAliasUserAlreadyExist = errors.New("AliasUser: already exist")
ErrInvalidFormatUsersPassword = errors.New("User: password file invalid format")