diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2026-06-29 17:43:24 +0000 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2026-06-29 17:43:24 +0000 |
| commit | 15d4dfc538dce7bfce4b0926b77f7f200cca99ff (patch) | |
| tree | f0dbceb404d2bab3896ffd6b42ec4b41f8f01c7e /utils.c | |
| parent | 30849656518854f1ff5af2ad8e583ceb199d1fbd (diff) | |
| parent | 25ccc2599aa722b0552193961d4cda15928112d8 (diff) | |
Diffstat (limited to 'utils.c')
| -rw-r--r-- | utils.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -44,7 +44,9 @@ static const char * const default_srv_config = "{" "\"protocol\": \"https\"," "\"fastcgi\": false," "\"disable_inbox_collection\": true," - "\"disable_history\": true" + "\"disable_history\": true," + "\"keep_replied_posts\": false," + "\"keep_replied_me\": false" "}"; static const char * const default_css = @@ -369,6 +371,9 @@ int adduser(const char *uid) fclose(f); } + /* remove the grave */ + grave(uid, 2); + printf("\nUser password is %s\n", pwd); printf("\nGo to %s/%s and continue configuring your user there.\n", srv_baseurl, uid); |