@extends('layouts.customer') @section('title', 'Bounce Server') @section('page-title', 'Bounce Server') @section('content')

{{ $bounceServer->name }}

{{ $bounceServer->protocol }}://{{ $bounceServer->hostname }}:{{ $bounceServer->port }}

@if($bounceServer->customer_id) @customercan('servers.permissions.can_edit_bounce_servers') Edit @endcustomercan @customercan('servers.permissions.can_delete_bounce_servers')
@csrf @method('DELETE') Delete
@endcustomercan @endif
Username: {{ $bounceServer->username }}
Mailbox: {{ $bounceServer->mailbox }}
Encryption: {{ $bounceServer->encryption }}
Active: {{ $bounceServer->active ? 'Yes' : 'No' }}
Delete after processing: {{ $bounceServer->delete_after_processing ? 'Yes' : 'No' }}
Max emails/batch: {{ $bounceServer->max_emails_per_batch }}
@if($bounceServer->notes)
Notes:
{{ $bounceServer->notes }}
@endif
Back
@endsection