Compare commits
No commits in common. "main" and "0.4" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -2,5 +2,4 @@ list_alias.py
|
||||
malias.zip
|
||||
malias_local.py
|
||||
*.json
|
||||
.DS_Store
|
||||
.python-version
|
||||
.DS_Store
|
68
README.md
68
README.md
@ -17,52 +17,54 @@ malias -h
|
||||
## Documentation
|
||||
|
||||
```bash
|
||||
usage: malias [-h] [-c] [-s server APIKey] [-a alias@domain.com to@domain.com] [-f alias@domain.com] [-d alias@domain.com] [-t user@domain.com domain.com] [-w alias@domain.com] [-l] [-o] [-e] [-v]
|
||||
usage: malias [-h] [-k APIkey] [-s alias@domain.com] [-m mailcow-server.tld]
|
||||
[-a alias@domain.com to@domain.com]
|
||||
[-t user@domain.com domain.com] [-d alias@domain.com]
|
||||
[-i alias.json] [-v] [-c] [-l] [-o]
|
||||
|
||||
Malias is an application for adding, creating, and deleting aliases on a Mailcow instance.
|
||||
This is a simple application to help you create and delete aliases on a mailcow instance.
|
||||
If you find any issues or would like to submit a PR - please head over to https://gitlab.pm/rune/malias.
|
||||
|
||||
Use the issues section in the git repo for any problems or suggestions. https://gitlab.pm/rune/malias
|
||||
I hope this makes your mailcow life a bit easier!
|
||||
|
||||
options:
|
||||
optional arguments:
|
||||
-h, --help show this help message and exit
|
||||
-c, --copy Copy alias data from mailcow server to local DB.
|
||||
|
||||
-s, --set server APIKey
|
||||
Set connection information.
|
||||
|
||||
-a, --add alias@domain.com to@domain.com
|
||||
Add new alias.
|
||||
|
||||
-f, --find alias@domain.com
|
||||
-k APIkey, --api APIkey
|
||||
Add/Change API key.
|
||||
|
||||
-s alias@domain.com, --search alias@domain.com
|
||||
Search for alias.
|
||||
|
||||
-d, --delete alias@domain.com
|
||||
|
||||
-m mailcow-server.tld, --server mailcow-server.tld
|
||||
Add/Uppdate mailcow instance.
|
||||
|
||||
-a alias@domain.com to@domain.com, --add alias@domain.com to@domain.com
|
||||
Add new alias.
|
||||
|
||||
-t user@domain.com domain.com, --timed user@domain.com domain.com
|
||||
Add new time limited alias for user on domain. One year validity
|
||||
|
||||
-d alias@domain.com, --delete alias@domain.com
|
||||
Delete alias.
|
||||
|
||||
-t, --timed user@domain.com domain.com
|
||||
Add new time limited alias for user on domain.
|
||||
The user@domain.com is where you want the alias to be delivered to.
|
||||
The domain.com is which domain to use when creating the timed-alias.
|
||||
One year validity
|
||||
|
||||
-w alias@domain.com, --alias alias@domain.com
|
||||
List timed (temprary) aliases connected toone account.
|
||||
|
||||
-l, --list List all aliases on the Mailcow instance.
|
||||
|
||||
-o, --domains List all mail domains on the Mailcow instance.
|
||||
|
||||
-e, --export List all mail domains on the Mailcow instance.
|
||||
|
||||
|
||||
-i alias.json, --import alias.json
|
||||
Show current config and appliacation info
|
||||
|
||||
-v, --version Show current version and information
|
||||
|
||||
|
||||
-c, --copy Copy alias data from mailcow server to local DB.
|
||||
|
||||
-l, --list List all aliases on the Mailcow instance.
|
||||
|
||||
-o, --domains List all mail domains on the Mailcow instance.
|
||||
|
||||
|
||||
Making mailcow easier...
|
||||
```
|
||||
|
||||
## Plans
|
||||
|
||||
I'm also working on functionality for ~~exporting~~ and importing aliases. As of version _0.4_ there is an export and an import fucntion that is not active in the app. Hopefully they will be finnished some day...
|
||||
I'm also working on functionality for exporting and importing aliases. As of version _0.4_ there is an export and an import fucntion that is not active in the app. Hopefully they will be finnished some day...
|
||||
|
||||
## Contributing
|
||||
|
||||
|
BIN
malias.png
Normal file
BIN
malias.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 573 KiB |
@ -1,13 +1,48 @@
|
||||
anyio==4.8.0
|
||||
certifi==2025.1.31
|
||||
exceptiongroup==1.2.2
|
||||
h11==0.14.0
|
||||
httpcore==1.0.7
|
||||
httpx==0.28.1
|
||||
idna==3.10
|
||||
markdown-it-py==3.0.0
|
||||
aiohttp==3.8.4
|
||||
aiosignal==1.3.1
|
||||
async-timeout==4.0.2
|
||||
attrs==22.2.0
|
||||
bleach==6.0.0
|
||||
build==0.10.0
|
||||
certifi==2022.12.7
|
||||
cffi==1.15.1
|
||||
charset-normalizer==3.1.0
|
||||
click==8.1.3
|
||||
docopt==0.6.2
|
||||
docutils==0.19
|
||||
frozenlist==1.3.3
|
||||
gitdb==4.0.10
|
||||
GitPython==3.1.32
|
||||
gpg==1.21.0
|
||||
idna==3.4
|
||||
importlib-metadata==6.1.0
|
||||
jaraco.classes==3.2.3
|
||||
keyring==23.13.1
|
||||
markdown-it-py==2.2.0
|
||||
mdurl==0.1.2
|
||||
pygments==2.19.1
|
||||
rich==13.9.4
|
||||
sniffio==1.3.1
|
||||
typing-extensions==4.12.2
|
||||
more-itertools==9.1.0
|
||||
multidict==6.0.4
|
||||
notmuch==0.37
|
||||
notmuch2==0.37
|
||||
openai==0.27.0
|
||||
packaging==23.0
|
||||
pipreqs==0.4.11
|
||||
pkginfo==1.9.6
|
||||
promptcli==1.0.4
|
||||
pycparser==2.21
|
||||
Pygments==2.14.0
|
||||
pyproject_hooks==1.0.0
|
||||
readme-renderer==37.3
|
||||
requests==2.28.2
|
||||
requests-toolbelt==0.10.1
|
||||
rfc3986==2.0.0
|
||||
rich==13.3.1
|
||||
six==1.16.0
|
||||
smmap==5.0.0
|
||||
tqdm==4.65.0
|
||||
twine==4.0.2
|
||||
urllib3==1.26.14
|
||||
webencodings==0.5.1
|
||||
yarg==0.1.9
|
||||
yarl==1.8.2
|
||||
zipp==3.15.0
|
||||
|
Loading…
x
Reference in New Issue
Block a user