---
title: "DKIMセレクターとは何か、どうやって見つけるか | AutoSPF"
description: "DKIMセレクターとは、特定の1つのDKIM公開鍵を指し示すラベルで、1つのドメインが複数の鍵（送信サービスごとに1つ）を公開できるようにします。DNSホストを形成します。"
image: "https://autospf.com/images/og-default.png"
canonical: "https://autospf.com/ja/dkim/dkim-selector/"
---

# DKIMセレクター

DKIMセレクターとは、特定の1つのDKIM公開鍵を指し示すラベルで、1つのドメインが複数の鍵（送信サービスごとに1つ）を公開できるようにします。DNSホスト selector.\_domainkey.yourdomain.com を形成し、DKIM-Signatureヘッダーの s= タグとして現れます。

このガイドは、[DKIM](/ja/dkim/)に関する完全ガイドの一部です。関連: [DKIMレコード](/ja/dkim/dkim-record/)、[DKIM署名](/ja/dkim/dkim-signature/)。

**DKIMセレクターとは、ドメインのDNSに保管された特定の公開鍵を指し示す短いラベルです。これにより、1つのドメインが同時に多数のDKIM鍵（送信サービスごと、または鍵の世代ごとに1つ）を公開でき、受信サーバーは特定のメッセージの署名を検証する際に、どの鍵を取得すればよいかを正確に把握できます。**

## セレクターがDKIMルックアップにどう組み込まれるか

DKIM署名されたすべてのメールは、その署名の中にセレクターを持っています。受信メールサーバーは、そのセレクターをあなたのドメインと組み合わせてDNSホスト名を構築し、そこに保管された公開鍵を検索します。この規則は固定されています。

```
selector._domainkey.yourdomain.com
```

中央のラベル`_domainkey`は常に存在します。これはDKIMがDNSで予約する名前空間です。セレクターは署名サービスが選んだ任意のものです。例えば、`example.com`からのメッセージがセレクター`google`で署名されている場合、検証者は次を照会します。

```
google._domainkey.example.com
```

そのホスト名には、公開鍵を含むTXTレコードが保管されています。受信者はそれを取得し、それを使ってメッセージの暗号学的署名をチェックし、それに応じてDKIMを通過または失敗させます。セレクターは各署名に組み込まれているため、同じドメインが衝突なく複数の鍵を並行して運用できます。

## DKIMセレクターの見つけ方

セレクターを見つける最も確実な方法は、対象のサービスによって実際に署名されたメッセージから直接それを読み取ることです。その送信者から受信した任意のメールを開き、生のソースまたは元のヘッダーを表示して、`DKIM-Signature`ヘッダーを見つけてください。`s=`タグがセレクターです。

```
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
    d=example.com; s=google;
    h=from:to:subject:date; bh=...; b=...
```

ここで`d=example.com`は署名ドメイン、`s=google`はセレクターなので、鍵は`google._domainkey.example.com`に存在します。1つのメッセージが複数の`DKIM-Signature`ヘッダーを持つこともあり、それぞれに独自の`s=`タグがあります。これはメールが複数の署名サービスを経由する場合によく見られます。

署名されたメッセージが手元になかったり、DNSに実際に公開されているものを確認したい場合は、無料の[DKIMルックアップツール](/ja/tools/dkim-lookup/)の自動検出機能を使ってください。あなたのドメインに対して一般的なプロバイダーのセレクターを探索し、見つかった公開鍵を返すため、生のヘッダーを探し回ることなくDKIM設定を検証できます。

## プロバイダー別の一般的なセレクター

ほとんどのメールプラットフォームは、予測可能で文書化されたセレクターを使用します。セレクター名を決めるのはあなたではなく署名サービスなので、その値はあなたのメールを誰が送るかによって変わります。

| プロバイダー           | 典型的なセレクター                   |
| ---------------- | --------------------------- |
| Google Workspace | google                      |
| Microsoft 365    | selector1、selector2         |
| SendGrid         | s1、s2                       |
| Mailchimp        | k1                          |
| Amazon SES       | 汎用トークン（アイデンティティごとに長い一意の文字列） |

これらは慣例であって保証ではありません。プロバイダーは方式を変更することがあり、セットアップ時にセレクターをカスタマイズできるものもあります。疑わしい場合は、思い込みで判断せず、実際に署名されたメッセージから`s=`タグを読み取ってください。

## ドメインが複数のセレクターを持つ理由

1つのドメインが複数のセレクターを同時に公開することは正常であり、通常は健全なことです。主な理由は2つあります。

第一に、**各送信サービスが独自のセレクターを取得する**からです。トランザクションメールをAmazon SES経由で、マーケティングキャンペーンをMailchimp経由で、社内メールをGoogle Workspace経由で送信する場合、各サービスは独自のセレクターの下で独自の鍵で署名します。これらは互いに干渉することなくDNS上で共存します。

第二に、**鍵のローテーションが複数のセレクターに依存する**からです。DKIM鍵は、秘密鍵が万が一漏洩した場合の被害を抑えるために、定期的にローテーションすべきです。切り替えの間、古い鍵は既存のセレクターの下で有効なまま保たれ、新しい鍵は新しいセレクターの下で公開されます。どちらの鍵で署名されたメールも依然として検証され、処理中のメールがすべてクリアされたら、古いセレクターを廃止できます。これがまさに、Microsoft 365が`selector1`と`selector2`を備えている理由です。これらの間をきれいに切り替えられるのです。

## DKIMを設定するときのセレクターの選び方

自分で新しい鍵を生成するとき、セレクター名はあなたが選びます。短くDNSに適したラベルなら何でも使えます。チームはしばしば、後で目的と世代が明らかになるよう、`mail2026`や`smtp1`のように説明的な語と日付やバージョンを組み合わせたものを使います。この名前はセキュリティには影響しません。単なる検索用のキーです。重要なのは、DNSレコードのセレクターが、署名システムが送信メールに刻印する`s=`タグと一致することです。詳しい手順については、[DKIMレコードの生成方法](/ja/dkim/how-to-generate-a-dkim-record/)を参照してください。

## よくある質問

### DKIMセレクターとは何ですか？

DKIMセレクターとは、署名されたメッセージを検証するために受信サーバーがどの公開鍵を取得すべきかを識別するテキストラベルです。あなたのドメインと`selector._domainkey.yourdomain.com`として組み合わされ、DNSルックアップを形成します。セレクターにより、1つのドメインが複数のDKIM鍵（サービスごと、または鍵のバージョンごとに1つ）を同時に公開できます。

### 自分のDKIMセレクターはどうやって見つけますか？

サービスが実際に署名したメッセージを開き、その生のソースを表示して、`DKIM-Signature`ヘッダー内の`s=`タグを読み取ってください。その値がセレクターです。署名されたメッセージが手元にない場合は、無料のDKIMルックアップツールの自動検出機能があなたのドメインに対して一般的なプロバイダーのセレクターを探索し、どの鍵が公開されているかを報告します。

### 1つのドメインは複数のDKIMセレクターを持てますか？

はい、そしてそれはよくあることです。各送信サービスは通常、独自のセレクターで署名するため、複数のメールプラットフォームを使うドメインは複数のセレクターを同時に公開します。複数のセレクターは安全な鍵のローテーションも可能にします。切り替えの間、古い鍵と新しい鍵が異なるセレクターの下に存在するため、どちらで署名されたメールも依然として検証されます。

### DKIMセレクターの名前は重要ですか？

正確な名前はセキュリティや配信性には影響しません。セレクターは単なる検索用のラベルです。重要なのは、DNSレコードに公開されたセレクターが、署名サービスが送信メールに刻印する`s=`タグと一致することです。チームはしばしば、目的と経過年数を追跡しやすくするために、名前に日付やバージョンを追加します。

Rated 5/5 on G2 · Trusted since 2018 

##  Trusted by 50,000+ domains 

### "AutoSPF Flattens SPF Records Seamlessly & Keeps Changes Logged - I am quite pleased with the product"

> It does what it promises to do, and does it very well. I appreciate that it keeps a log of changes made, which prevents many mistakes. A client's SPF record would have way too many lookups, but AutoSPF makes that problem go away. The length of the SPF record is typically not the issue; it's the amount of lookups in the record that are. AutoSPF "flattens" the record, automatically expanding the defined lookups to IP addresses or ranges. And it auto-updates the record when the un-flattened lookups change. 

 PJ 

Peter J.

 President · Small-Business (50 or fewer emp.) 

### "Helped us go beyond capacity"

> AutoSPF did exactly as described, it helped us get past our 10 lookup limit. Afterwards, we hit another limit regarding overall capacity and when contacted, they quickly provided us with a new solution to eliminate capacity issues entirely going forward, so now we can add as many SPF records as needed. They also provided us with a personalized support video explaining their new method in its entirety using our instance as the example. 

 VU 

Verified User

 Financial Services · Mid-Market (51-1000 emp.) 

### "Great service and great support"

> AutoSPF was easy to initially set up on our own and a great cost effective entry into spf flattening. Needed our first support assistance today and got great response including a video demonstrating the issue I was trying to solve, a quick fix, and more detailed followup. 

 GF 

Greg F.

 Mid-Market (51-1000 emp.) 

[Read our reviews on G2 ](https://www.g2.com/products/autospf/reviews)

```json
{"@context":"https://schema.org","@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]},"sameAs":["https://www.wikidata.org/wiki/Q138897474","https://www.linkedin.com/company/autospf","https://x.com/autospf01","https://www.facebook.com/autospf","https://github.com/duocircle","https://www.g2.com/products/autospf/reviews"],"aggregateRating":{"@type":"AggregateRating","ratingValue":"5.0","reviewCount":"21","bestRating":"5","worstRating":"1","url":"https://www.g2.com/products/autospf/reviews"},"contactPoint":{"@type":"ContactPoint","contactType":"customer support","url":"https://autospf.com/contact-us/"},"knowsAbout":["SPF Record Flattening","Sender Policy Framework","Email Authentication","DNS Management","DMARC","DKIM","Email Deliverability","SPF Lookup Limits"]}
```

```json
{"@context":"https://schema.org","@type":"WebSite","name":"AutoSPF","url":"https://autospf.com","description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","publisher":{"@type":"Organization","name":"AutoSPF","url":"https://autospf.com","logo":{"@type":"ImageObject","url":"https://autospf.com/images/autospf-logo.png"},"description":"Automatic SPF flattening and email authentication management. Resolve SPF lookup limits, flatten SPF records, and maintain email deliverability across all your domains.","parentOrganization":{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138883901","name":"DuoCircle LLC","url":"https://www.duocircle.com","sameAs":["https://www.wikidata.org/wiki/Q138883901","https://www.crunchbase.com/organization/duocircle-llc","https://www.linkedin.com/company/duocircle","https://github.com/duocircle"],"subOrganization":[{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138898167","name":"DMARC Report","url":"https://dmarcreport.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897474","name":"AutoSPF","url":"https://autospf.com"},{"@type":"Organization","@id":"https://www.wikidata.org/wiki/Q138897912","name":"Phish Protection","url":"https://www.phishprotection.com"}]}}}
```

```json
{"@context":"https://schema.org","@type":"FAQPage","mainEntity":[{"@type":"Question","name":"DKIMセレクターとは何ですか？","acceptedAnswer":{"@type":"Answer","text":"DKIMセレクターとは、署名されたメッセージを検証するために受信サーバーがどの公開鍵を取得すべきかを識別するテキストラベルです。あなたのドメインと`selector._domainkey.yourdomain.com`として組み合わされ、DNSルックアップを形成します。セレクターにより、1つのドメインが複数のDKIM鍵（サービスごと、または鍵のバージョンごとに1つ）を同時に公開できます。"}},{"@type":"Question","name":"自分のDKIMセレクターはどうやって見つけますか？","acceptedAnswer":{"@type":"Answer","text":"サービスが実際に署名したメッセージを開き、その生のソースを表示して、`DKIM-Signature`ヘッダー内の`s=`タグを読み取ってください。その値がセレクターです。署名されたメッセージが手元にない場合は、無料のDKIMルックアップツールの自動検出機能があなたのドメインに対して一般的なプロバイダーのセレクターを探索し、どの鍵が公開されているかを報告します。"}},{"@type":"Question","name":"1つのドメインは複数のDKIMセレクターを持てますか？","acceptedAnswer":{"@type":"Answer","text":"はい、そしてそれはよくあることです。各送信サービスは通常、独自のセレクターで署名するため、複数のメールプラットフォームを使うドメインは複数のセレクターを同時に公開します。複数のセレクターは安全な鍵のローテーションも可能にします。切り替えの間、古い鍵と新しい鍵が異なるセレクターの下に存在するため、どちらで署名されたメールも依然として検証されます。"}},{"@type":"Question","name":"DKIMセレクターの名前は重要ですか？","acceptedAnswer":{"@type":"Answer","text":"正確な名前はセキュリティや配信性には影響しません。セレクターは単なる検索用のラベルです。重要なのは、DNSレコードに公開されたセレクターが、署名サービスが送信メールに刻印する`s=`タグと一致することです。チームはしばしば、目的と経過年数を追跡しやすくするために、名前に日付やバージョンを追加します。"}}]}
```

```json
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://autospf.com/"},{"@type":"ListItem","position":2,"name":"DKIM","item":"https://autospf.com/ja/dkim/"},{"@type":"ListItem","position":3,"name":"DKIM","item":"https://autospf.com/ja/dkim/dkim-selector/"}]}
```

```json
{"@context":"https://schema.org","@type":"Product","name":"AutoSPF","url":"https://autospf.com","aggregateRating":{"@type":"AggregateRating","ratingValue":5,"reviewCount":21,"bestRating":5,"worstRating":1},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"author":{"@type":"Person","name":"Peter J.","jobTitle":"President"},"datePublished":"2026-03-10","reviewBody":"It does what it promises to do, and does it very well. I appreciate that it keeps a log of changes made, which prevents many mistakes. A client's SPF record would have way too many lookups, but AutoSPF makes that problem go away. The length of the SPF record is typically not the issue; it's the amount of lookups in the record that are. AutoSPF \"flattens\" the record, automatically expanding the defined lookups to IP addresses or ranges. And it auto-updates the record when the un-flattened lookups change.","name":"AutoSPF Flattens SPF Records Seamlessly & Keeps Changes Logged - I am quite pleased with the product","publisher":{"@type":"Organization","name":"G2","url":"https://www.g2.com"}},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"author":{"@type":"Person","name":"Verified User","jobTitle":"Financial Services"},"datePublished":"2025-07-31","reviewBody":"AutoSPF did exactly as described, it helped us get past our 10 lookup limit. Afterwards, we hit another limit regarding overall capacity and when contacted, they quickly provided us with a new solution to eliminate capacity issues entirely going forward, so now we can add as many SPF records as needed. They also provided us with a personalized support video explaining their new method in its entirety using our instance as the example.","name":"Helped us go beyond capacity","publisher":{"@type":"Organization","name":"G2","url":"https://www.g2.com"}},{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":5,"bestRating":5},"author":{"@type":"Person","name":"Greg F."},"datePublished":"2023-07-26","reviewBody":"AutoSPF was easy to initially set up on our own and a great cost effective entry into spf flattening. Needed our first support assistance today and got great response including a video demonstrating the issue I was trying to solve, a quick fix, and more detailed followup.","name":"Great service and great support","publisher":{"@type":"Organization","name":"G2","url":"https://www.g2.com"}}]}
```
