مراية لـ
https://github.com/postalserver/postal.git
تم المزامنة 2025-12-01 05:43:04 +00:00
37 أسطر
1.6 KiB
Plaintext
37 أسطر
1.6 KiB
Plaintext
- page_title << @server.name
|
|
- page_title << "Routing"
|
|
- page_title << "SMTP Endpoints"
|
|
|
|
= render 'servers/sidebar', :active_server => @server
|
|
= render 'servers/header', :active_nav => :routing
|
|
= render 'routes/header', :active_nav => :smtp_endpoints
|
|
.pageContent.pageContent--compact
|
|
|
|
- if @smtp_endpoints.empty?
|
|
.noData.noData--dog.noData--clean
|
|
%h2.noData__title Im-paws-ible! You've got no SMTP endpoints.
|
|
%p.noData__text
|
|
SMTP endpoints are other mail servers that you'd like incoming e-mails
|
|
to be passed onto. Once you've added some endpoints, you can route messages
|
|
to them by creating #{link_to 'routes', [organization, @server, :routes], :class => 'u-link'}.
|
|
%p.noData__button
|
|
= link_to "Add your first SMTP endpoint", [:new, organization, @server, :smtp_endpoint], :class => 'button button--positive'
|
|
|
|
- else
|
|
|
|
%ul.endpointList.u-margin
|
|
- for endpoint in @smtp_endpoints
|
|
%li.endpointList__item
|
|
= link_to [:edit, organization, @server, endpoint], :class => 'endpointList__link' do
|
|
.endpointList__main
|
|
%p.endpointList__name= endpoint.name
|
|
%p.endpointList__url= endpoint.hostname
|
|
%ul.endpointList__details
|
|
%li.endpointList__detailItem
|
|
- if endpoint.last_used_at
|
|
Last used #{distance_of_time_in_words_to_now endpoint.last_used_at} ago
|
|
- else
|
|
Not used yet
|
|
|
|
%p.u-center= link_to "Add another SMTP endpoint", [:new, organization, @server, :smtp_endpoint], :class => 'button button--positive'
|