aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiquel Lionel <lionel@les-miquelots.net>2021-04-11 18:20:41 +0100
committerMiquel Lionel <lionelmiquel@sfr.fr>2021-04-11 18:20:41 +0100
commit8cbc83817dbafd2ac26d9834009e6cfa3d58b3d7 (patch)
treea35776798fd2a5edc33c989a0f4b0b38c927eb93 /Makefile
parent734fe365eac84cc94d5b814df617f24f7d597f91 (diff)
downloadgpigeon-8cbc83817dbafd2ac26d9834009e6cfa3d58b3d7.tar.gz
gpigeon-8cbc83817dbafd2ac26d9834009e6cfa3d58b3d7.zip
Cookie based login added
- the cookie last 1 year and is set upon login - deleted when pressing "Disconnect" button - updated the config.mk and Makefile for COOKIES_DIR variable - camel-cased the subroutines. I like it that way, it stands out more compared to variables - reinserted some vars back into link-tmpl.cgi, it wasn't making sense to have them in gpigeon-template.cgi - no more 'Unknown' link asker in the links table: if the string is a valid email address, we link to the file in the table.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5089417..0799e98 100644
--- a/Makefile
+++ b/Makefile
@@ -14,7 +14,7 @@ install:
ARGON2ID_HASH="`tail -1 genpass.txt`"; \
fi
sed -e 's|argon2id_hash_goes_here|$(ARGON2ID_HASH)|g' -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
- sed -e "s|cookies_dir_goes_here|${PREFIX}/cookies|g" -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
+ sed -e "s|cookies_dir_goes_here|$(COOKIES_DIR)|g" -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
sed -e "s|link_template_path_goes_here|$(LINK_TEMPLATE_PATH)|g" -i $(DESTDIR)$(WWWPREFIX)/cgi-bin/gpigeon.cgi
sed -e "s|msg_char_limit_goes_here|$(MSG_FORM_CHAR_LIMIT)|g" -i $(DESTDIR)$(LINK_TEMPLATE_PATH)
cp -f link-tmpl.cgi $(DESTDIR)$(LINK_TEMPLATE_PATH)