@extends('layouts.admin') @section('title', $bounceServer->name) @section('page-title', $bounceServer->name) @section('content')

{{ $bounceServer->name }}

{{ __('Bounce server details') }}

{{ __('Edit') }}
@csrf @method('DELETE') {{ __('Delete') }}
{{ __('Protocol') }}
{{ $bounceServer->protocol }}
{{ __('Host') }}
{{ $bounceServer->hostname }}:{{ $bounceServer->port }} ({{ strtoupper($bounceServer->encryption) }})
{{ __('Mailbox') }}
{{ $bounceServer->mailbox ?? __('INBOX') }}
{{ __('Username') }}
{{ $bounceServer->username }}
{{ __('Active') }}
{{ $bounceServer->active ? __('Active') : __('Inactive') }}
{{ __('Delete After Processing') }}
{{ $bounceServer->delete_after_processing ? __('Yes') : __('No') }}
{{ __('Max Emails Per Batch') }}
{{ $bounceServer->max_emails_per_batch ?? 100 }}
{{ __('Notes') }}
{{ $bounceServer->notes ?? __('—') }}
@endsection