Mail is sent from newlispfanclub at alh dot net, to the address in your Control Panel > Profile > Edit Account Settings page.Quote from: "Ryon"
Understood. Apparently it was not my filter, just
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuMail is sent from newlispfanclub at alh dot net, to the address in your Control Panel > Profile > Edit Account Settings page.Quote from: "Ryon"
Seems simple enough, enter your email address in the Control Panel, check the Notify Me box, and things should work! I've verified that you did this correctly and also ran a check on our mail server, and everything seems to be in order. So, why isn't this working?Quote from: "Ryon"
This seems to have been a common issue with phpBB forum software for the past several years, and I don't see any consensus among the admins or support as to its cause. I don't want to change any code or DB settings until I understand the problem.
There is a setting in the UCP > Board Preferences > Edit Posting Results that enables replies by default. If you don't mind getting replies on all your posts, maybe this will work for you. You must be subscribed to the topic/forum before the emails will be sent, and you will only get one email per new post until you visit the topic, no matter how may replies are made.
Thanks for your participation here, Tim, and hope this helps!
Quote
I don't understand, why "but"? His test code shows it's better to use one call.
" .vimrc
autocmd BufNewFile,BufRead *.lsp set filetype=newlisp
autocmd BufRead,BufNewFile *.lsp setlocal shiftwidth=2 tabstop=2
> (set 'record '(("name" "Tim")(age 61)))
(("name" "Tim") (age 61))
> (set 'indices '(1 0))
(1 0)
> (record indices)
age ;; correct
> (set 'ndxs '(a b))
(a b)
> (record ndxs)
ERR: value expected : ;; duh!