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

Software: Apache. PHP/5.6.40 

uname -a: Linux cpanel06wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24
01:42:00 EDT 2020 x86_64
 

uid=851(cp949260) gid=853(cp949260) groups=853(cp949260) 

Safe-mode: OFF (not secure)

/etc/mail/spamassassin/CMAE-SA_bak/example/C/   drwxr-xr-x
Free 203.53 GB of 981.82 GB (20.73%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     mbox_subs.h (1.39 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* File: mbox_subs.h
 *  
 *  This structure and routines in this file abstract an email and an mbox file.
 *  They allow us to iterate thourgh an mbox, extracting on mail at at ime.
 */
#ifndef __MBOX_SUBS_H__
#define __MBOX_SUBS_H__

#include <stddef.h>
#include <string.h>


/*
 * A single email. 
 */
typedef struct rfc822_mail
{
    char *mail_text;        /* The text of the mail */
    char *from;             /* The envelope from line. */
    ptrdiff_t body_offset;  /* The offest into mail_text of the first line of the body */
    size_t mail_size;       /* The total size of the mail, including headers. */
}mail_t;

/*
 * Allocate a new mail_t struct. 
 */
mail_t *new_mail();

/*
 * Release mail_t struct. 
 */
void free_mail(mail_t* mail);

/*
 * Return a copy of the specified header from a mail. 
 */
char *get_header(mail_t *mail, char *header);


/*
 * An mbox file. 
 */
typedef struct mbox
{
    FILE *file;             /* The file stream */
    char *from_line;        /* The last "From " line seen. */
    int  done;              /* non-zero if EOF seen. */
    int  last_line_empty;   /* non-zero if last line read was empty. */
}mbox_t;

/*
 * Allocate an intialize an new mbox_t. 
 */
mbox_t *new_mbox(char *mbox_path);

/*
 * Release an mbox_t. 
 */
void free_mbox(mbox_t *mbox);

/*
 * Fetch the next mail from an mbox file. 
 */
mail_t *next_mail(mbox_t *mbox);


#endif // __MBOX_SUBS_H__


:: 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 KaizenLouie | C99Shell Github | Generation time: 0.1136 ]--