summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
authorGravatar grunfink2025-04-27 03:11:57 +0000
committerGravatar grunfink2025-04-27 03:11:57 +0000
commit169c5c8c070c527e7462e6ac86b916e94649c1ac (patch)
treef1ce03b950a278a1985526cb58dc4e879c3ab046 /utils.c
parentUpdated RELEASE_NOTES. (diff)
parentdefault to `smtp://localhost` (diff)
downloadsnac2-169c5c8c070c527e7462e6ac86b916e94649c1ac.tar.gz
snac2-169c5c8c070c527e7462e6ac86b916e94649c1ac.tar.xz
snac2-169c5c8c070c527e7462e6ac86b916e94649c1ac.zip
Merge pull request 'do email notifications with CURL' (#283) from shtrophic/snac2:curl-smtp into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/283
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c57
1 files changed, 57 insertions, 0 deletions
diff --git a/utils.c b/utils.c
index 5d54b8b..bf55b9f 100644
--- a/utils.c
+++ b/utils.c
@@ -912,3 +912,60 @@ void import_csv(snac *user)
912 else 912 else
913 snac_log(user, xs_fmt("Cannot open file %s", fn)); 913 snac_log(user, xs_fmt("Cannot open file %s", fn));
914} 914}
915
916static const struct {
917 const char *proto;
918 unsigned short default_port;
919} FALLBACK_PORTS[] = {
920 /* caution: https > http, smpts > smtp */
921 {"https", 443},
922 {"http", 80},
923 {"smtps", 465},
924 {"smtp", 25}
925};
926
927int parse_port(const char *url, const char **errstr)
928{
929 const char *col, *rcol;
930 int tmp, ret = -1;
931
932 if (errstr)
933 *errstr = NULL;
934
935 if (!(col = strchr(url, ':'))) {
936 if (errstr)
937 *errstr = "bad url";
938
939 return -1;
940 }
941
942 for (size_t i = 0; i < sizeof(FALLBACK_PORTS) / sizeof(*FALLBACK_PORTS); ++i) {
943 if (memcmp(url, FALLBACK_PORTS[i].proto, strlen(FALLBACK_PORTS[i].proto)) == 0) {
944 ret = FALLBACK_PORTS[i].default_port;
945 break;
946 }
947 }
948
949 if (!(rcol = strchr(col + 1, ':')))
950 rcol = col;
951
952 if (rcol) {
953 tmp = atoi(rcol + 1);
954 if (tmp == 0) {
955 if (ret != -1)
956 return ret;
957
958 if (errstr)
959 *errstr = strerror(errno);
960
961 return -1;
962 }
963
964 return tmp;
965 }
966
967 if (errstr)
968 *errstr = "unknown protocol";
969
970 return -1;
971}