mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2024-11-22 02:17:26 +00:00
7 lines
174 B
Bash
Executable File
7 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
POSTDATA=dummy
|
|
if [ "$1" == "--force" ]; then
|
|
POSTDATA=force=1
|
|
fi
|
|
curl -s -d $POSTDATA --user $(</var/lib/mailinabox/api.key): http://127.0.0.1:10222/dns/update
|