Hello Guix, I want to share a quick hack with you about how to list bug reports on debbugs by submitter (your reports) with emacs-debbugs. You could do it interactively by evaluting: (debbugs-gnu-search) RET submitter RET YOUR-EMAIL RET Also you could define a function to type it automatically like: --8<---------------cut here---------------start------------->8--- (defun debbugs-gnu-my () (interactive) (let ((debbugs-gnu-current-query `((submitter . ,user-mail-address)))) (debbugs-gnu nil))) --8<---------------cut here---------------end--------------->8--- Be sure user-mail-address is set properly: (setq user-mail-address "YOUR-EMAIL") Then you could evaluate it with M-x debbugs-gnu-my Maybe we should have this function snippet in HACKING or documentation? Oleg.