Enable full setup on the setup form
This commit is contained in:
@@ -582,8 +582,8 @@ class Address extends Model
|
||||
// Limit to max messages
|
||||
Log::info(sprintf('%s:= Got [%d] echomails for [%s] for sending',self::LOGKEY,$x->count(),$this->ftn));
|
||||
|
||||
if ($x->count() > $s->max_msgs_pkt) {
|
||||
$x = $x->take($s->max_msgs_pkt);
|
||||
if ($x->count() > $s->msgs_pkt) {
|
||||
$x = $x->take($s->msgs_pkt);
|
||||
Log::alert(sprintf('%s:= Only sending [%d] echomails for [%s]',self::LOGKEY,$x->count(),$this->ftn));
|
||||
}
|
||||
|
||||
@@ -678,7 +678,7 @@ class Address extends Model
|
||||
$c = 0;
|
||||
foreach ($msgs as $oo) {
|
||||
// Only bundle up to max messages
|
||||
if (++$c > $s->max_msgs_pkt)
|
||||
if (++$c > $s->msgs_pkt)
|
||||
break;
|
||||
|
||||
$o->addMail($oo->packet($this));
|
||||
|
Reference in New Issue
Block a user