!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/usr/share/doc/dovecot-core/wiki/   drwxr-xr-x
Free 1.31 GB of 7.22 GB (18.12%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Debugging.Thunderbird.txt (2.12 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
Debugging using Thunderbird's logging
-------------------------------------

Thunderbird has the ability to log its client actions based on protocol; this
can be useful when you're experiencing a problem with Dovecot and want to trap
the commands that the client is sending.

Windows batch file
------------------

Save the below as 'runtbird.bat' and place it on the desktop, then run this
instead of the Thunderbird icon.

---%<-------------------------------------------------------------------------
set mydate=%date:~-4,4%%date:~-7,2%%date:~-10,2%
set mytime=%time:~0,2%%time:~+3,2%

set NSPR_LOG_MODULES=IMAP:5
set NSPR_LOG_FILE=%USERPROFILE%\thunderbird_%mydate%_%mytime%.log

start /d "c:\program files\mozilla thunderbird" thunderbird.exe
---%<-------------------------------------------------------------------------

Adjust the log location and Thunderbird install folder as appropriate. If you
want to log all modules instead of just IMAP (SMTP, e.g.) then replace "IMAP"
above with "all". The above will create a date/time stamped logfile for each
run, so  you won't lose the previous logs.

Linux/BSD/etc. shell script
---------------------------

Save the below as 'runtbird.sh', chmod it 0755, then run this instead of the
Thunderbird icon.

---%<-------------------------------------------------------------------------
#!/bin/sh

TB_PATH=`which thunderbird`
# or for MacOSX:
#TB_PATH="/Applications/Thunderbird.app/Contents/MacOS/thunderbird-bin"

MYDATE=`date "+%Y%m%d_%H%M%S"`
NSPR_LOG_MODULES=IMAP:5
NSPR_LOG_FILE=/tmp/thunderbird_${MYDATE}.log
export NSPR_LOG_MODULES NSPR_LOG_FILE

$TB_PATH &
exit $?
---%<-------------------------------------------------------------------------

Adjust the log location and Thunderbird launch binary as appropriate. If you
want to log all modules instead of just IMAP (SMTP, e.g.) then replace "IMAP"
above with "all". You can also get a timestamp at the begining of all the log
lines, if you add ",timestamp" after "NSPR_LOG_MODULES=IMAP:5" for example. The
above will create a date/time stamped logfile for each run, so  you won't lose
the previous logs.

(This file was created from the wiki on 2013-11-24 04:42)

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0117 ]--