#!/usr/bin/env php obj->address_type, $e->obj->address, $e->obj->tableName()); exit(1); } } elseif (have_option('a', 'all')) { $all = true; $ca = new Confirm_address(); $ca->address_type = 'email'; if (!$ca->find()) { print "confirm_address table contains no lingering email addresses\n"; exit(0); } } else { print "You must provide an email (or --all).\n"; exit(1); } if (!have_option('y', 'yes')) { print "About to resend confirm_address email to {$ca->N} recipients. Are you sure? [y/N] "; $response = fgets(STDIN); if (strtolower(trim($response)) != 'y') { print "Aborting.\n"; exit(0); } } function mailConfirmAddress(Confirm_address $ca) { try { $user = User::getByID($ca->user_id); $profile = $user->getProfile(); if ($profile->isSilenced()) { $ca->delete(); return; } if ($user->email === $ca->address) { throw new AlreadyFulfilledException('User already has identical confirmed email address.'); } } catch (AlreadyFulfilledException $e) { print "\n User already had verified email: "._ve($ca->address); $ca->delete(); } catch (Exception $e) { print "\n Failed to get user with ID "._ve($user_id).', deleting confirm_address entry: '._ve($e->getMessage()); $ca->delete(); return; } mail_confirm_address($user, $ca->code, $user->getNickname(), $ca->address); } require_once INSTALLDIR . '/lib/util/mail.php'; if (!$all) { mailConfirmAddress($ca); } else { while ($ca->fetch()) { mailConfirmAddress($ca); } } print "\nDONE.\n";