<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">&lt;?php
/***
 * Requires: apt-get install php5-imap
 */
$weatherenabled = 1;
$gmailenabled = 1;
$dateenabled = 1;
$quoteenabled = 1;

// weather
$city="London";
$country="UK"; //Two digit country code
$openweatherApiKey = "";
$weatherurl="http://api.openweathermap.org/data/2.5/weather?q=".$city.",".$country."&amp;units=metric&amp;cnt=7&amp;lang=en&amp;appid=".$openweatherApiKey;
// gmail
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = '';
$password = '';

?&gt;
</pre></body></html>