Compare commits

..

No commits in common. "2e759f9fc6e29d241ed926e3dc024b89863a11bc" and "984d62e7ffae9a07eee8a6f1fdc134e14890f695" have entirely different histories.

4 changed files with 5 additions and 11 deletions

View file

@ -1,13 +1,12 @@
root_access: yes
display_server: "x11"
dev_stuffs:
- ansible
- docker
- network
- php
- python
- shell
- sql
- network
- ansible
- docker
- php
software_full: yes
has_battery: yes
auto_numlock: yes

View file

@ -47,9 +47,6 @@ local servers = {
{% if 'php' in dev_stuffs %}
"phpactor", -- Install this one manually https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation
{% endif %}
{% if 'sql' in dev_stuffs %}
"sqls",
{% endif %}
}
for _, lsp in ipairs(servers) do
nvim_lsp[lsp].setup {

View file

@ -56,7 +56,6 @@ if __name__ == "__main__":
env_var="SUBJECT",
default=f"Test message {now.strftime('%H:%M:%S')}",
)
parser.add_argument("-8", "--smtputf8", env_var="SMTPUTF8", action="store_true")
parser.add_argument("-c", "--callout", env_var="CALLOUT", action="store_true")
parser.add_argument("-b", "--body", env_var="BODY", default="")
@ -194,7 +193,7 @@ Input arguments:
+ password.encode()
).decode()
send(f"AUTH PLAIN {encoded}")
send(f"MAIL FROM: <{args.sender}>" + (" SMTPUTF8" if args.smtputf8 else ""))
send(f"MAIL FROM: <{args.sender}>")
for receiver in args.receiver:
send(f"RCPT TO: <{receiver}>")
if not args.callout: