<?php
/*
# IMAP account configuration
Setup your mail account, you need an account with IMAP access
*/
$hostname = "{imap.gmail.com:993/imap/ssl}";
$user = "hide@address.com";
$pwd = "mypassword";
/*
# Categories Configuration
You can add as many categories as you want, but remember to change the number to follow the sequence (eg: 0,1,2,3,4,5...)
*/
$boxname[0]="FunnyMails";
$boxname[1]="CoolPics";
$boxname[3]="ProjectX";
//page configuration
$mails_per_page = 15;
//box pagination images
$pag_img_size = 32;
?>