Not a bug or anything, it just doesn't have replyto feature implemented. 99% users will never use it so it'd be unnecessary configuration overhead and confusion so it was not implemented. Those needing it for now will need to manually implement it. To manually implement it you'll need to make the below edit.
IN: /components/com_comprofiler/plugin/user/plug_cbgroupjive/cbgroupjive.class.php
ON: Lines 498 - 504
FROM:
Code:
if ( $plugin->params->get( 'notifications_from_name' ) ) {
$fromName = $plugin->params->get( 'notifications_from_name' );
}
if ( $plugin->params->get( 'notifications_from_address' ) ) {
$fromEmail = $plugin->params->get( 'notifications_from_address' );
}
TO:
Code:
$orgFromName = $fromName;
if ( $plugin->params->get( 'notifications_from_name' ) ) {
$fromName = $plugin->params->get( 'notifications_from_name' );
}
$orgFromEmail = $fromEmail;
if ( $plugin->params->get( 'notifications_from_address' ) ) {
$fromEmail = $plugin->params->get( 'notifications_from_address' );
}
ON: Lines 566 - 580
FROM:
Code:
if ( ( $notifyBy == 4 ) || ( $type == 4 ) ) {
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1 );
} elseif ( ( $notifyBy == 3 ) || ( $type == 3 ) ) {
$_CB_PMS->sendPMSMSG( $toId, $fromId, $subject, $message, true );
} elseif ( ( $notifyBy == 2 ) || ( $type == 2 ) ) {
$_CB_PMS->sendPMSMSG( $toId, $fromId, $subject, $message, true );
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1 );
} elseif ( ( $notifyBy == 1 ) || ( $type == 1 ) ) {
if ( ! $_CB_PMS->sendPMSMSG( $toId, $fromId, $subject, $message, true ) ) {
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1 );
}
}
} elseif ( $toEmail ) {
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1 );
TO:
Code:
if ( ( $notifyBy == 4 ) || ( $type == 4 ) ) {
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1, null, null. null, $orgFromEmail, $orgFromName );
} elseif ( ( $notifyBy == 3 ) || ( $type == 3 ) ) {
$_CB_PMS->sendPMSMSG( $toId, $fromId, $subject, $message, true );
} elseif ( ( $notifyBy == 2 ) || ( $type == 2 ) ) {
$_CB_PMS->sendPMSMSG( $toId, $fromId, $subject, $message, true );
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1, null, null. null, $orgFromEmail, $orgFromName );
} elseif ( ( $notifyBy == 1 ) || ( $type == 1 ) ) {
if ( ! $_CB_PMS->sendPMSMSG( $toId, $fromId, $subject, $message, true ) ) {
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1, null, null. null, $orgFromEmail, $orgFromName );
}
}
} elseif ( $toEmail ) {
comprofilerMail( $fromEmail, $fromName, $toEmail, $subject, $message, 1, null, null. null, $orgFromEmail, $orgFromName );