|
From: Thomas W. <to...@to...> - 2005-10-21 15:04:07
|
Hello, > * fetchmailconf now changes the output file to mode 0600 BEFORE writing to it, > so there is no window where passwords could be read by the world. > Matthias Andree. This doesn't sound quite right. The only safe way is to CREATE the file in 600 mode right away. If you just CHANGE to 600 even before writing to it, there IS an unsafe window. Try the following: touch x tail -f x Then in another shell: chmod -r x echo bla >> x "bla" will show up in the first window, read by "tail". Kind regards, Thomas Wolff |