diff options
| author | Solderpunk <solderpunk@sdf.org> | 2019-05-18 17:44:37 +0000 | 
|---|---|---|
| committer | Solderpunk <solderpunk@sdf.org> | 2019-05-18 17:44:37 +0000 | 
| commit | 92efb1db578858441978ebd72a688b2404948746 (patch) | |
| tree | 12abcf7d0a94c0e9b78599e5eb593fce78652df1 | |
| parent | Remove the last unimplemented feature, which was another gboard-ism we don't ... (diff) | |
Tighten up permissions on post files, so they are not world writable.
Diffstat (limited to '')
| -rwxr-xr-x | telem.lua | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -238,7 +238,7 @@ function do_board()  	raise_privs()  	local board_dir = path.join(_BBS_ROOT, "boards", board)  	lfs.mkdir(board_dir) -	os.execute("chmod og+rwx " .. board_dir) +	os.execute("chmod og+rx " .. board_dir)  	-- Write topic file  	local topic_file = path.join(board_dir, "topic")  	file.write(topic_file, desc) @@ -445,7 +445,7 @@ function do_new()  	local thread_path = path.join(current_board.directory, thread_dir)  	raise_privs()  	lfs.mkdir(thread_path) -	os.execute("chmod og+rwx " .. thread_path) +	os.execute("chmod og+rx " .. thread_path)  	-- Write subject file  	file.write(path.join(thread_path, "subject"), subject)  	os.execute("chmod og+r " .. path.join(thread_path, "subject")) | 
