PHPMailer6
auswertung
bootstrap
classes
config
controller
dashboard
css
js
#upload.php
changepwd.php
create_member.php
create_user.php
create_verteileruser.php
edit_member.php
edit_noten.php
edit_user.php
edit_verteileruser.php
einwilligungen.php
error.php
finanzen.php
footer.php
index.php
login.php
logout.php
mailversand.php
nav.php
navtop.php
notenbuch.php
notenbuchzuordnung.php
notenupload.php
notenuserzuordnung.php
parameter.php
passwortvergessen.php
passwortzuruecksetzen.php
result_latest.php
rollen.php
rollenzuordnung.php
startseite.php#
style.min.css
survey_edit.php
survey_erfassen.php
test.php
userzuordnung.php
verteilerlisten.php
verteileruserzuordnung.php
datepicker
jquery
js
language
lib
media
selfregistration
sql
survey
templates
test
tinymce
.gitignore
Hinweise_zu_php8.txt
config.inc.php
todo.txt
25 lines
651 B
PHP
25 lines
651 B
PHP
<?php
|
|
error_reporting(E_ALL);
|
|
|
|
$mbox = imap_open("{imap.ionos.de:993/imap/ssl}", "info@ju-and-mi.de", "!S3ge1gP", OP_HALFOPEN)
|
|
or die("can't connect: " . imap_last_error());
|
|
if($mbox){
|
|
echo "connect";
|
|
}else{
|
|
echo "fail";
|
|
}
|
|
$list = imap_getmailboxes($mbox, "{imap.ionos.de:993/imap/ssl}", "*");
|
|
if (is_array($list)) {
|
|
foreach ($list as $key => $val) {
|
|
echo "($key) ";
|
|
echo imap_utf7_decode($val->name) . ",";
|
|
echo "'" . $val->delimiter . "',";
|
|
echo $val->attributes . "<br />\n";
|
|
}
|
|
} else {
|
|
echo "imap_getmailboxes failed: " . imap_last_error() . "\n";
|
|
}
|
|
|
|
imap_close($mbox);
|
|
|
|
?>
|